aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86_64/asm/misc.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86_64/asm/misc.s')
-rw-r--r--src/arch/x86_64/asm/misc.s11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/arch/x86_64/asm/misc.s b/src/arch/x86_64/asm/misc.s
new file mode 100644
index 0000000..fc5aa90
--- /dev/null
+++ b/src/arch/x86_64/asm/misc.s
@@ -0,0 +1,11 @@
+; place for misc code, before they find better places to live..
+
+[GLOBAL _delay]
+
+[SECTION .text]
+
+_delay:
+ jmp .dummy
+.dummy:
+ ret
+