summaryrefslogtreecommitdiff
path: root/Source/Applications/SampleApps/lib-melonasm.asm
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Applications/SampleApps/lib-melonasm.asm')
-rw-r--r--Source/Applications/SampleApps/lib-melonasm.asm24
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