1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 05:41:31 +00:00
8bitworkshop/presets/sound_williams-z80/minimal.c
2017-04-04 09:01:59 -04:00

18 lines
263 B
C

const __sfr __at (0x0) command;
__sfr __at (0x0) dac;
#define HALT __asm halt __endasm;
// press "2" or higher to activate...
void main() {
char i;
char j;
if (command == 0) HALT;
for (i=0; i<255; i++) {
for (j=0; j<i; j++) dac=j^i;
}
HALT;
}