Some comment corrections

This commit is contained in:
0xMAC8205 2023-10-29 00:02:46 +02:00
parent 5c9a533e5f
commit f80b827012
2 changed files with 7 additions and 6 deletions

View File

@ -32,7 +32,7 @@ vram_read
; Y => Y Coordinate ; Y => Y Coordinate
; Output: ; Output:
; A => Data ; A <= Data
vram_dump vram_dump

View File

@ -104,7 +104,7 @@ video_read_char
; Input: (none) ; Input: (none)
; Output: ; Output:
; A => Pressed Key as Char ; A <= Pressed Key as Char
rts rts
@ -129,8 +129,8 @@ video_get_cursor
; Input: (none) ; Input: (none)
; Output: ; Output:
; X => X Coordinate ; X <= X Coordinate
; Y => Y Coordinate ; Y <= Y Coordinate
rts rts
@ -169,14 +169,15 @@ video_scroll
; 1 = Scroll Entire Video Buffer (Y 0 - 255) (32k) ; 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 rts
video_clear video_clear
; Video Clear ; Video Clear
; Clears the Screen, to ; Clears the Screen blank, with the normal Color
rts rts