diff options
author | Alexis211 <alexis211@gmail.com> | 2009-11-13 18:05:27 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-11-13 18:05:27 +0100 |
commit | 2b9e97b8635c20c5a2b87789b1014489863d1994 (patch) | |
tree | 58fa9f2fa82ac9477819193b6731b8b927187224 /Source/Applications/SampleApps/lib-melonasm.asm | |
parent | 7e3ecd80af5ddcedbfa3d849284400ed6568f516 (diff) | |
download | Melon-2b9e97b8635c20c5a2b87789b1014489863d1994.tar.gz Melon-2b9e97b8635c20c5a2b87789b1014489863d1994.zip |
Added a game of life simulator demo
Diffstat (limited to 'Source/Applications/SampleApps/lib-melonasm.asm')
-rw-r--r-- | Source/Applications/SampleApps/lib-melonasm.asm | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/Source/Applications/SampleApps/lib-melonasm.asm b/Source/Applications/SampleApps/lib-melonasm.asm deleted file mode 100644 index 0845770..0000000 --- a/Source/Applications/SampleApps/lib-melonasm.asm +++ /dev/null @@ -1,24 +0,0 @@ -[bits 32] - -%ifidn __OUTPUT_FORMAT__, bin -; create a MelonBinary output - -%define MEM_ORIGIN 0x10000000 - -dd 0xFEEDBEEF ; magic number ^^ -dd end - start -dd MEM_ORIGIN - -; the ($-$$) permits not taking into account the header above -[org MEM_ORIGIN - ($-$$)] - -%elifidn __OUTPUT_FORMAT__, elf -; create an elf object - -[global start] - -%endif - -%define SC_PUTCH 0xFFFFFF01 -%define SC_SLEEP 0xFFFFFF02 -%define SC_WHEX 0xFFFFFF03 |