-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Matthias Gatto <[email protected]>
- Loading branch information
Showing
4 changed files
with
44 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
.segment "HEADER" | ||
.byte "YIRL 0" | ||
|
||
.segment "DATA" | ||
.byte "hello world" | ||
|
||
.segment "RAM" | ||
gamestate: .res 1 ; .rs 1 means reserve one byte of space | ||
gamestate2: .res 1 ; .rs 1 means reserve one byte of space | ||
|
||
|
||
.segment "CODE" | ||
LDA #$66 | ||
LDX #$40 | ||
STA gamestate | ||
STA gamestate2 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters