From 135ee9c345597b1d3234b01a1a7f623d4247b378 Mon Sep 17 00:00:00 2001 From: Daniele Verducci su MatissePenguin Date: Thu, 17 Dec 2020 20:38:36 +0100 Subject: [PATCH] Line numbers --- assembly/bios/monitor.asm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/assembly/bios/monitor.asm b/assembly/bios/monitor.asm index f9c0e12..0e3508b 100644 --- a/assembly/bios/monitor.asm +++ b/assembly/bios/monitor.asm @@ -88,6 +88,15 @@ monitor_dump: ; Test with DUMP 0x00A0 (contains text) ld e, MON_DUMP_BYTES_LINES ; the number of lines to display monitor_dump_show_bytes_loop: ld d, MON_DUMP_BYTES_PER_LINE ; the number of bytes per line to display + ; Print current address + ld a, h + call monitor_printHexByte + ld a, l + call monitor_printHexByte + ; print two spaces + ld a, 32 + call Printc + call Printc monitor_dump_show_bytes_line_loop: ; print character at mem position ld a, (hl)