Cootster said:
My computer doesn't like console mode . . . So I can't run any of the nifty little programming tools . . .
So, are there any 6502 assemblers for XP?
ALternatively, just recommend a good DOS emu that's compatible with DASM/5200Basic/etc . . .
DASM is
not run by clicking on it!
You need to pass it parameters, such as the name of the file to assemble, and the type of output, and the output filename.
You run DASM in a command-line environment, or from a makefile (which runs it from a command-line environment anyway).
Please review the tutorials; I'm sure they have explained this. In any case, from XP you need to go Start/Run.. cmd
You should then be in a command-line 'shell'. Navigate to where the DASM program resides (and if you don't know how to navigate, you really need to look up how DOS works) and then just type dasm
That should cause DASM to print out a list of its options, and some data about its version number. You'll need to pass the correct parameters to it to get it to assemble your file (again, all explained in the tutorials).
Cheers
A