From 2682bc5d1d864341aaeb42a449db73c3ecd16d70 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Wed, 30 Dec 2020 19:07:31 +0000 Subject: Initial import --- src/ubox/ubox_fill_screen.z80 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/ubox/ubox_fill_screen.z80 (limited to 'src/ubox/ubox_fill_screen.z80') diff --git a/src/ubox/ubox_fill_screen.z80 b/src/ubox/ubox_fill_screen.z80 new file mode 100644 index 0000000..ed8c58f --- /dev/null +++ b/src/ubox/ubox_fill_screen.z80 @@ -0,0 +1,10 @@ +.globl _ubox_fill_screen + +FILVRM = 0x0056 + +_ubox_fill_screen:: + ld a, l + ld hl, #0x1800 + ld bc, #768 + jp FILVRM + -- cgit v1.2.3