Files
RomWBW/Source/Apps/Test/MBC/leds2.asm
Wayne Warthen cd37599444 Test Apps Linux Build
- Complete the reorganization of the test apps by implementing Makefile changes.
2021-09-26 16:03:43 -07:00

9 lines
171 B
NASM

; 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