Remove all address comments

This commit is contained in:
mid-kid
2018-06-24 16:09:41 +02:00
parent 131875d3e3
commit 1d9a68dbdd
616 changed files with 12133 additions and 20380 deletions

View File

@@ -1,7 +1,6 @@
PushWindow:: ; 1c00
PushWindow::
callfar _PushWindow
ret
; 1c07
ExitMenu:: ; 0x1c07
push af
@@ -79,7 +78,7 @@ GetMenuBoxDims:: ; 0x1c53
ret
; 0x1c66
CopyMenuData:: ; 1c66
CopyMenuData::
push hl
push de
push bc
@@ -96,9 +95,8 @@ CopyMenuData:: ; 1c66
pop de
pop hl
ret
; 1c7e
GetWindowStackTop:: ; 1c7e
GetWindowStackTop::
ld hl, wWindowStackPointer
ld a, [hli]
ld h, [hl]
@@ -108,9 +106,8 @@ GetWindowStackTop:: ; 1c7e
ld h, [hl]
ld l, a
ret
; 1c89
PlaceVerticalMenuItems:: ; 1c89
PlaceVerticalMenuItems::
call CopyMenuData
ld hl, wMenuDataPointer
ld e, [hl]
@@ -143,17 +140,15 @@ PlaceVerticalMenuItems:: ; 1c89
ld b, $0
add hl, bc
jp PlaceString
; 1cbb
MenuBox:: ; 1cbb
MenuBox::
call MenuBoxCoord2Tile
call GetMenuBoxDims
dec b
dec c
jp TextBox
; 1cc6
GetMenuTextStartCoord:: ; 1cc6
GetMenuTextStartCoord::
ld a, [wMenuBorderTopCoord]
ld b, a
inc b
@@ -175,9 +170,8 @@ GetMenuTextStartCoord:: ; 1cc6
.bit_7_clear
ret
; 1ce1
ClearMenuBoxInterior:: ; 1ce1
ClearMenuBoxInterior::
call MenuBoxCoord2Tile
ld bc, SCREEN_WIDTH + 1
add hl, bc
@@ -186,27 +180,24 @@ ClearMenuBoxInterior:: ; 1ce1
dec c
call ClearBox
ret
; 1cf1
ClearWholeMenuBox:: ; 1cf1
ClearWholeMenuBox::
call MenuBoxCoord2Tile
call GetMenuBoxDims
inc c
inc b
call ClearBox
ret
; 1cfd
MenuBoxCoord2Tile:: ; 1cfd
MenuBoxCoord2Tile::
ld a, [wMenuBorderLeftCoord]
ld c, a
ld a, [wMenuBorderTopCoord]
ld b, a
; 1d05
Coord2Tile:: ; 1d05
Coord2Tile::
; Return the address of wTileMap(c, b) in hl.
xor a
ld h, a
@@ -226,15 +217,14 @@ Coord2Tile:: ; 1d05
bccoord 0, 0
add hl, bc
ret
; 1d19
MenuBoxCoord2Attr:: ; 1d19
MenuBoxCoord2Attr::
ld a, [wMenuBorderLeftCoord]
ld c, a
ld a, [wMenuBorderTopCoord]
ld b, a
Coord2Attr:: ; 1d21
Coord2Attr::
; Return the address of wAttrMap(c, b) in hl.
xor a
ld h, a
@@ -254,4 +244,3 @@ Coord2Attr:: ; 1d21
bccoord 0, 0, wAttrMap
add hl, bc
ret
; 1d35