User Tools

Site Tools


how_to_mix_c_and_asm

This is an old revision of the document!


A PCRE internal error occured. This might be caused by a faulty plugin

It's actually quite easy! As you can see in the example below, just enclose the ASM part with //_////_asm// and //_////_endasm;// You might have to declare some additional variables, but the concept is quite straightforward. <code c> unsigned char Scale_7bit(unsigned char evnt2, unsigned char min, unsigned char max) { // scaled value is (<8-bit random> * ) >> 8 PRODL = evnt2 << 1; // 8bit value PRODH = max-min+1; // range __asm movf _PRODL, W mulwf _PRODH, 0 __endasm; return min + PRODH; } </code>

how_to_mix_c_and_asm.1160904901.txt.gz · Last modified: 2007/04/07 02:47 (external edit)