diff --git a/lib/src/hardware.s b/lib/src/hardware.s index 612307c..7b6ae5c 100644 --- a/lib/src/hardware.s +++ b/lib/src/hardware.s @@ -32,7 +32,7 @@ vram_read ; Y => Y Coordinate ; Output: - ; A => Data + ; A <= Data vram_dump diff --git a/lib/src/video.s b/lib/src/video.s index e384c92..6959bc7 100644 --- a/lib/src/video.s +++ b/lib/src/video.s @@ -104,7 +104,7 @@ video_read_char ; Input: (none) ; Output: - ; A => Pressed Key as Char + ; A <= Pressed Key as Char rts @@ -129,8 +129,8 @@ video_get_cursor ; Input: (none) ; Output: - ; X => X Coordinate - ; Y => Y Coordinate + ; X <= X Coordinate + ; Y <= Y Coordinate rts @@ -169,14 +169,15 @@ video_scroll ; 1 = Scroll Entire Video Buffer (Y 0 - 255) (32k) - ; I.E => 0x03 => Scrolls RIGHT & Up and Disposes "scrolled away" content. Fills gaps with empty cells + ; I.E => 0x03 (0b00001011) => Scrolls Entire Videobuffer Right & Up and + ; Disposes "scrolled away" content. Fills gaps with empty cells rts video_clear ; Video Clear - ; Clears the Screen, to + ; Clears the Screen blank, with the normal Color rts