generated from MichaelJKlaiber/cesp_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/muellevin/RARS_Game_of_Life
- Loading branch information
Showing
3 changed files
with
84 additions
and
17 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
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,42 @@ | ||
|
||
# i sorted this out now because this looks better and is easier to use | ||
|
||
|
||
|
||
|
||
.data | ||
|
||
.eqv MAX_OBJECT 4 # min is 1 | ||
|
||
glider: | ||
.word 0x00030003 # 16BIt height| 16 bit widht | ||
.word 0x35800000 # expression of glider status 001|101|011 -> 3x3 cells needed | ||
|
||
smiley: | ||
.word 0x00080009 | ||
.word 0x3E20A530 | ||
.word 0x1A2CE504 | ||
.word 0x7c000000 | ||
|
||
|
||
r_pent: | ||
.word 0x00030003 # 16BIt height| 16 bit widht | ||
.word 0x79000000 # Bitmuster 011110010 + filling 0 | ||
|
||
glider_gun: | ||
.word 0x000b0026 # 16BIt height| 16 bit widht | ||
.word 0 # first and last row empty (buffer for views) | ||
.word 0x00000001 | ||
.word 0 | ||
.word 0x14000001 | ||
.word 0x81800600 | ||
.word 0x08860019 | ||
.word 0x80411800 | ||
.word 0x06011614 | ||
.word 0x00000410 | ||
.word 0x10000008 | ||
.word 0x80000000 | ||
.word 0x18000000 | ||
.word 0 | ||
|
||
.text |
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