mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
Merge remote-tracking branch 'upstream/master' into something_to_pull
This commit is contained in:
commit
9a642a529a
@ -81,10 +81,11 @@ YMax: .res 2 ; Y2 value of bounding box
|
|||||||
OldValue: .res 1 ; Temp for MoveCheck routine
|
OldValue: .res 1 ; Temp for MoveCheck routine
|
||||||
NewValue: .res 1 ; Temp for MoveCheck routine
|
NewValue: .res 1 ; Temp for MoveCheck routine
|
||||||
|
|
||||||
; Default values for above variables
|
|
||||||
|
|
||||||
.rodata
|
.rodata
|
||||||
|
|
||||||
|
; Default values for above variables
|
||||||
|
; (We use ".proc" because we want to define both a label and a scope.)
|
||||||
|
|
||||||
.proc DefVars
|
.proc DefVars
|
||||||
.byte 0, 0 ; OldPotX/OldPotY
|
.byte 0, 0 ; OldPotX/OldPotY
|
||||||
.word SCREEN_HEIGHT/2 ; YPos
|
.word SCREEN_HEIGHT/2 ; YPos
|
||||||
|
@ -87,10 +87,11 @@ Buttons: .res 1 ; Button mask
|
|||||||
|
|
||||||
Temp: .res 1
|
Temp: .res 1
|
||||||
|
|
||||||
; Default values for above variables
|
|
||||||
|
|
||||||
.rodata
|
.rodata
|
||||||
|
|
||||||
|
; Default values for above variables
|
||||||
|
; (We use ".proc" because we want to define both a label and a scope.)
|
||||||
|
|
||||||
.proc DefVars
|
.proc DefVars
|
||||||
.word SCREEN_HEIGHT/2 ; YPos
|
.word SCREEN_HEIGHT/2 ; YPos
|
||||||
.word SCREEN_WIDTH/2 ; XPos
|
.word SCREEN_WIDTH/2 ; XPos
|
||||||
|
@ -84,10 +84,11 @@ Buttons: .res 1 ; Button mask
|
|||||||
|
|
||||||
Temp: .res 1
|
Temp: .res 1
|
||||||
|
|
||||||
; Default values for above variables
|
|
||||||
|
|
||||||
.rodata
|
.rodata
|
||||||
|
|
||||||
|
; Default values for above variables
|
||||||
|
; (We use ".proc" because we want to define both a label and a scope.)
|
||||||
|
|
||||||
.proc DefVars
|
.proc DefVars
|
||||||
.word SCREEN_HEIGHT/2 ; YPos
|
.word SCREEN_HEIGHT/2 ; YPos
|
||||||
.word SCREEN_WIDTH/2 ; XPos
|
.word SCREEN_WIDTH/2 ; XPos
|
||||||
|
@ -101,10 +101,9 @@ Buttons: .res 1 ; button status bits
|
|||||||
OldValue: .res 1 ; Temp for MoveCheck routine
|
OldValue: .res 1 ; Temp for MoveCheck routine
|
||||||
NewValue: .res 1 ; Temp for MoveCheck routine
|
NewValue: .res 1 ; Temp for MoveCheck routine
|
||||||
|
|
||||||
; Default values for above variables
|
|
||||||
|
|
||||||
.rodata
|
.rodata
|
||||||
|
|
||||||
|
; Default values for above variables
|
||||||
; (We use ".proc" because we want to define both a label and a scope.)
|
; (We use ".proc" because we want to define both a label and a scope.)
|
||||||
|
|
||||||
.proc DefVars
|
.proc DefVars
|
||||||
|
@ -106,10 +106,11 @@ Buttons: .res 1 ; Button mask
|
|||||||
|
|
||||||
Temp: .res 1
|
Temp: .res 1
|
||||||
|
|
||||||
; Default values for above variables
|
|
||||||
|
|
||||||
.rodata
|
.rodata
|
||||||
|
|
||||||
|
; Default values for above variables
|
||||||
|
; (We use ".proc" because we want to define both a label and a scope.)
|
||||||
|
|
||||||
.proc DefVars
|
.proc DefVars
|
||||||
.word SCREEN_HEIGHT/2 ; YPos
|
.word SCREEN_HEIGHT/2 ; YPos
|
||||||
.word SCREEN_WIDTH/2 ; XPos
|
.word SCREEN_WIDTH/2 ; XPos
|
||||||
|
@ -84,10 +84,11 @@ Buttons: .res 1 ; Button mask
|
|||||||
|
|
||||||
Temp: .res 1
|
Temp: .res 1
|
||||||
|
|
||||||
; Default values for above variables
|
|
||||||
|
|
||||||
.rodata
|
.rodata
|
||||||
|
|
||||||
|
; Default values for above variables
|
||||||
|
; (We use ".proc" because we want to define both a label and a scope.)
|
||||||
|
|
||||||
.proc DefVars
|
.proc DefVars
|
||||||
.word SCREEN_HEIGHT/2 ; YPos
|
.word SCREEN_HEIGHT/2 ; YPos
|
||||||
.word SCREEN_WIDTH/2 ; XPos
|
.word SCREEN_WIDTH/2 ; XPos
|
||||||
|
@ -89,10 +89,11 @@ YMax: .res 2 ; Y2 value of bounding box
|
|||||||
|
|
||||||
Temp: .res 1
|
Temp: .res 1
|
||||||
|
|
||||||
; Default values for above variables
|
|
||||||
|
|
||||||
.rodata
|
.rodata
|
||||||
|
|
||||||
|
; Default values for above variables
|
||||||
|
; (We use ".proc" because we want to define both a label and a scope.)
|
||||||
|
|
||||||
.proc DefVars
|
.proc DefVars
|
||||||
.word SCREEN_HEIGHT / 2 ; YPos
|
.word SCREEN_HEIGHT / 2 ; YPos
|
||||||
.word SCREEN_WIDTH / 2 ; XPos
|
.word SCREEN_WIDTH / 2 ; XPos
|
||||||
|
Loading…
x
Reference in New Issue
Block a user