Its been a while..
You see to have really taken off with Revolution-FX, I've gotta see these grayscales for myself...

Nice work! Its great to see theres still huge interest in this project.
-alias
Posted 07 September 2007 - 11:01 AM
Posted 12 September 2007 - 08:27 AM
unsigned char ReadPort_A() { unsigned char port_a; port_a = PA.DR.BYTE; return port_a; }is too long, you can write just
unsigned char ReadPort_A() { return PA.DR.BYTE; }or if it product an error
unsigned char ReadPort_A() { return (unsigned char)PA.DR.BYTE; }
0 members, 0 guests, 0 anonymous users