diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-06-29 07:07:58 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-07-01 23:09:58 -0700 |
commit | 5df043bd954aced4f1f1fb5ee51a95251edc7053 (patch) | |
tree | c431b18ffd999f8d60701b6400ed112c4a04054d | |
parent | b41c2c718493c6fc398f5b36803f9860a42eeb31 (diff) | |
download | mu-5df043bd954aced4f1f1fb5ee51a95251edc7053.tar.gz |
.
-rw-r--r-- | subx/065hex.subx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subx/065hex.subx b/subx/065hex.subx index 8ea76ba5..c888b520 100644 --- a/subx/065hex.subx +++ b/subx/065hex.subx @@ -729,7 +729,7 @@ test-hex-above-f: 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 0xc/imm32 # add to ESP c3/return -from-hex-char: # in/EAX : byte -> out/EAX : num +from-hex-char: # in/EAX : byte -> out/EAX : nibble # no error checking; accepts argument in EAX # if (EAX <= '9') return EAX - '0' 3d/compare-EAX-with 0x39/imm32/9 |