@HOTANGLES fix code in trim (symbol "tab")

git-svn-id: svn://kolibrios.org@7461 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
theonlymirage 2018-10-14 04:48:50 +00:00
parent 5b0655cd78
commit 87c3f4bc8d

View File

@ -390,9 +390,9 @@ trim: ;esi -
;push esi ;push esi
mov byte[esi], 0 mov byte[esi], 0
dec esi dec esi
cmp byte[esi], 8 cmp byte[esi], 9 ;tab
je trim je trim
cmp byte[esi], 32 cmp byte[esi], 32 ;space
je trim je trim
inc esi inc esi
;pop esi ;pop esi