Fix off by 1 error in assembler reader which prevented B instructions from being parsed.

git-svn-id: branches/laksen/armiw@30147 -
This commit is contained in:
Jeppe Johansen 2015-03-08 12:52:43 +00:00
parent 914e9e7b49
commit 03b9e5117f

View File

@ -1290,7 +1290,7 @@ Unit raarmgas;
actopcode:=A_NONE;
j2:=maxlen;
hs2:=hs;
while j2>1 do
while j2>=1 do
begin
hs:=hs2;
while j2>=1 do