This commit is contained in:
Kartik Agaram 2020-06-29 18:35:20 -07:00
parent 59cf3ae983
commit 12e2b93a4b
1 changed files with 2 additions and 2 deletions

View File

@ -194,7 +194,7 @@ write-int32-hex: # f: (addr stream byte), n: int
51/push-ecx
# ecx = 28
b9/copy-to-ecx 0x1c/imm32
$write-int32-hex:print-hex-prefix:
$write-int32-hex:hex-prefix:
# write(f, "0x")
# . . push args
68/push "0x"/imm32
@ -282,7 +282,7 @@ write-int32-hex-buffered: # f: (addr buffered-file), n: int
51/push-ecx
# ecx = 28
b9/copy-to-ecx 0x1c/imm32
$write-int32-hex-buffered:print-hex-prefix:
$write-int32-hex-buffered:hex-prefix:
# write-buffered(f, "0x")
# . . push args
68/push "0x"/imm32