Skip to content

Commit

Permalink
Remove '#' from label names
Browse files Browse the repository at this point in the history
It was not supported by JWasm. Interesting how solidloop is not defined
anywhere, but the code still assembles fine.
  • Loading branch information
Risca committed Mar 4, 2023
1 parent bb65bd8 commit f4ad071
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions LIB386/LIB_SVGA/TEXTURE.ASM
Original file line number Diff line number Diff line change
Expand Up @@ -1691,7 +1691,7 @@ disptexture proc
mov di,ax
lodsw
sub ax,di
js #dispret
js dispret
add si,2
mov boucle,ax

Expand Down Expand Up @@ -1774,9 +1774,9 @@ h1: add bx,4 ; next xy
add di,640 ; next lig

dec boucle
jns #solidloop
jns solidloop

#dispret: pop ds
dispret: pop ds
ret

disptexture endp
Expand Down

0 comments on commit f4ad071

Please sign in to comment.