dmsc
dmsc
Hi! From that log, the instruction at that address is "XOR EBP, EBP", this is the disassembly of the function end: ``` 0097:211F 33C0 XOR AX,AX 0097:2121 6633ED XOR EBP,EBP
You probably need a DOS extender and a 80386 emulator, I don´t know if it uses a DSO extender to work in protected-mode or simply to access extended memory. Try...
Hi! > > As another tangent, we have our own lightweight alternative to WINE (https://github.com/decompals/wibo) which is only for cli applications (it has some magic to kick off the exe...
Hi! > Nice analysis! > > > it only crashes on any processor without 32 bit support > > if the offending instruction is replaced with a NOP, this is...
Hi! Yes, you can make a PR with the update at the end of the README. I don´t usually "install" programs myself, I comply copy/link them to ~/bin/ (or ~/.local/bin)....
Hi! I don't completely understand your question. Are you using the PC compiler? Do you want to generate an ATR image with the Atari executable inside? Have Fun!
Hi! To integrate data directly to the program, you can use the DATA FILE statement: ``` DATA mydata() BYTEFILE "my-local-file.bin" ``` This will read the binary file "my-local-file.bin" into your...
Hi! You can run the XEX directly in the emulator, you don't need an ATR. Or I still don't really understand your use case :( Have Fun!
Hi! I understand now, you want to test the game preserving the data in the disk image. What I normally do is to activate the "H:" device in the emulator,...
Closing as seems resolved.