From d22fd28d1d68dc3a76265597e10cba924048b41b Mon Sep 17 00:00:00 2001 From: lynchaj <86925539+lynchaj@users.noreply.github.com> Date: Tue, 6 Jul 2021 19:29:02 -0400 Subject: [PATCH] Create LEDs2.asm --- Source/Apps/LEDs2.asm | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Source/Apps/LEDs2.asm 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