Create LEDs2.asm

This commit is contained in:
lynchaj
2021-07-06 19:29:02 -04:00
committed by GitHub
parent d531a0e4c3
commit d22fd28d1d

8
Source/Apps/LEDs2.asm Normal file
View File

@@ -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