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

18 lines
263 B
C
Raw Permalink Normal View History

2017-04-02 18:54:51 +00:00
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;
}