diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-06-29 18:35:20 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-06-29 18:35:20 -0700 |
commit | 12e2b93a4bec024f3000adafb013d9490c821ae8 (patch) | |
tree | 6c50feabc90a379307d4e6fffbdfb304a6f7cb6f | |
parent | 59cf3ae9837c22eba57dc14aff1e5deb4597b499 (diff) | |
download | mu-12e2b93a4bec024f3000adafb013d9490c821ae8.tar.gz |
6598
-rw-r--r-- | 066write-int-hex.subx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/066write-int-hex.subx b/066write-int-hex.subx index eb3e48c4..27753e50 100644 --- a/066write-int-hex.subx +++ b/066write-int-hex.subx @@ -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 |