Closed dshadoff closed 5 months ago
Most (or possibly all) of the examples are creating an exception condition on the Mednafen console output:
Exception: ffffffb0 ffbe
I have determined that this happens because the program reaches the return(0); or exit(0); statement at the end of the main{} section.
return(0);
exit(0);
main{}
The examples should be updated to end in an infinite loop rather than reaching then end of the main() function.
main()
Most (or possibly all) of the examples are creating an exception condition on the Mednafen console output:
I have determined that this happens because the program reaches the
return(0);
orexit(0);
statement at the end of themain{}
section.The examples should be updated to end in an infinite loop rather than reaching then end of the
main()
function.