diff --git a/Source/Apps/LEDs2.asm b/Source/Apps/LEDs2.asm new file mode 100644 index 00000000..ddf36f81 --- /dev/null +++ b/Source/Apps/LEDs2.asm @@ -0,0 +1,8 @@ +; program to test user LEDs on Z80 MBC clock board +; by Andrew Lynch, 6 Jul 2021 + + org $0100 + LD A,%00000011 + OUT ($70),A ; turn on USERLED0 and USERLED1 + RET + end