Fixed FDO (seems like bug in FASM to me)

git-svn-id: svn://kolibrios.org@506 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Mihail Semenyako (mike.dld)
2007-05-17 19:54:49 +00:00
parent a908d63b4a
commit 56299dc76d
4 changed files with 39 additions and 26 deletions

View File

@@ -41,8 +41,8 @@ macro diff16 title,l1,l2
local s,d
s = l2-l1
display title,': 0x'
repeat 8
d = 48 + s shr ((8-%) shl 2) and $0F
repeat 16
d = 48 + s shr ((16-%) shl 2) and $0F
if d > 57
d = d + 65-57-1
end if