summary refs log tree commit diff homepage
path: root/lib.asm
diff options
context:
space:
mode:
Diffstat (limited to 'lib.asm')
-rw-r--r--lib.asm19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib.asm b/lib.asm
deleted file mode 100644
index 22bf196..0000000
--- a/lib.asm
+++ /dev/null
@@ -1,19 +0,0 @@
-section .rodata
-hexDigits: db '0123456789abcdef'
-
-section .text
-hex32:
-  push rbx
-  mov rbx, hexDigits
-  xor rax, rax
-
-%rep 8
-  shl rax, 8
-  mov al, dil
-  and al, 0x0f
-  xlatb
-  shr rdi, 4
-%endrep
-
-  pop rbx
-ret