diff options
| author | Tianhao Wang <shrik3@riseup.net> | 2023-03-14 10:47:25 +0100 |
|---|---|---|
| committer | Tianhao Wang <shrik3@riseup.net> | 2023-03-14 10:47:25 +0100 |
| commit | 383c203d77404b4f74723d7a89be691744f41c25 (patch) | |
| tree | 1061f01ed975a2c6b37015567b27cccac9f9f87b /src/arch/x86_64/asm/misc.s | |
| parent | 4eae38a6ce9110a155715575adcf12bdf45703cb (diff) | |
add delay between IOs
Diffstat (limited to 'src/arch/x86_64/asm/misc.s')
| -rw-r--r-- | src/arch/x86_64/asm/misc.s | 11 |
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 + |
