You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, apologies for the delay, I got busy with something and missed this.
Can the last outputted line in emulator (characters) be black instead of grey?
It can be done, however, that will need to be in the web repo, and also need to check from accessibility perspective, which I'm not that much familiar with.
The example you mentioned indeed seems like a bug, I think I have an idea of what might have gone wrong. I'll try to fix it as soon as I can.
`start:
;JG, JGE Bug:
MOV AX, 20
MOV BX, -10
CMP AX, BX
JG AX_GREATER_THAN_BX ;JG, JGE is for signed numbers
MOV AX, 0 ;But no jump made
AX_GREATER_THAN_BX: ;Must jump here
MOV AX, 0
;JL, JLE Bug
MOV AX, 20
MOV BX, -10
CMP AX, BX
JL AX_LESSER_THAN_BX ;JL, JLE is for signed numbers
MOV AX, 0 ;Must no jump
AX_LESSER_THAN_BX: ;Jumps here
MOV AX, 0`
The text was updated successfully, but these errors were encountered: