Search results
About C / Z80 optimizations (SDCC)
Score: 170.21 %,
Type: Forum topic , Comments: 186 comments
C-code differently.
For example
. unsigned char c;
for (c = 0; c < 10; ++c) {
// do something
}
generates much better Z80 code than
int n;
for (n = 0; n < 10; n++) {
// do ... do:
__sfr __at 0x06 myPort6;
myPort6 = 22;
testVar = myPort6;
This won't stack ...
How to use the debugger on a Mac?
Score: 164.26 %,
Type: Forum topic , Comments: 3 comments
Of course, the short answer is open command line (CMD + L) and type "help debug"
But, does any "graphical" utility exist for the purpose? I mean, something with shortcuts etc.
Yes it exists, and it’s an Yes it ...
