Battleship (#2720)

* Made the Battleship 2P 2PP game - FSK is wip
* Using POCSAG
This commit is contained in:
RocketGod
2025-06-28 11:02:29 -07:00
committed by GitHub
parent 0eb03373b1
commit 4e276cdc71
5 changed files with 1153 additions and 1 deletions
+7
View File
@@ -78,6 +78,7 @@ MEMORY
ram_external_app_dinogame (rwx) : org = 0xADE50000, len = 32k
ram_external_app_spaceinv (rwx) : org = 0xADE60000, len = 32k
ram_external_app_blackjack (rwx) : org = 0xADE70000, len = 32k
ram_external_app_battleship (rwx) : org = 0xADE80000, len = 32k
}
SECTIONS
@@ -412,5 +413,11 @@ SECTIONS
*(*ui*external_app*blackjack*);
} > ram_external_app_blackjack
.external_app_battleship : ALIGN(4) SUBALIGN(4)
{
KEEP(*(.external_app.app_battleship.application_information));
*(*ui*external_app*battleship*);
} > ram_external_app_battleship
}