Emulator command line arguments for automatically running compiled program #8
Replies: 2 comments 1 reply
-
That sounds like a good idea! Wouldn't it be even better if we could run the emulator and pass a source assembler file to it for automatic assembly and execution? Will think about it... |
Beta Was this translation helpful? Give feedback.
-
I've implemented full command line options into the emulator. As an example, we can now use the "l.." and "p.." commands of the spash menu as command line options: Minimal64x4.exe lprgs/stars.asm p2000 Will load, assemble and run the source code stars.asm in /prgs. You will have to update the emulator, edit.asm and os.asm (or flash.bin) for this. Any feedback is appreciated. |
Beta Was this translation helpful? Give feedback.
-
My process for writing code has the following steps:
This can be time consuming. I think it would be convenient if the emulator allowed passing a binary file on the command line so it could be run automatically. For example:
.\Minimal64x4.exe prog.bin
Then I could use a script to build and run the code something like this:
.\asm.exe .\prog.asm > prog.bin && .\Minimal64x4.exe prog.bin
Beta Was this translation helpful? Give feedback.
All reactions