Simulator Errors - MARIE-js/MARIE.js GitHub Wiki
Google Error 400 - Error: origin_mismatch
This is caused by incorrect setup by the owner of the website. This is because the key is setup so that only traffic through https://mariejs.xyz
may pass through authentication of the Google API. If you are trying to access through a site other than from our domains, please contact your site administrator immediately.
OverFlow Error
This occurs when executing the code and the value of one of the registers goes beyond the range 0000
to FFFF
. An example of the code which may cause the error is:
loop, Load X
Add X
Store X
Output
Jump loop
X, DEC 1
This bug can be fixed by entering an exit point using the HALT
instruction.