dmsc
dmsc
Hi! This is the problem: MyDOS uses memory up to $1DE8, then if you load the AUTORUN.SYS it installs a resident handler that uses memory up to $233A. This is...
Hi! Yes, currently FastBasic lacks the NOTE and POINT Atari statements. You can emulate them with XIO currently: ``` ' Emulates "NOTE", returns values in "SEC" and "BYT" variables PROC...
Closed as not-a-bug. Have Fun!
Note that your example is better written using a procedure with parameters: ``` @HS X+1 : YT = V*(H-L) : @HS X-1 : YT = YT + V*(R-H) : @HS...
Hi! Sorry, I won't implement this, as FOR loops with floating point variables are a bad idea: - It is a lot slower, as you have an extra floating-point comparison...
Hi! It is easy to build a disk image using other DOS, I selected BW-DOS because: - It is free to use, - It is small, - Runs on Atari...
Hi! Yes, this is because getting the executable path in a multi-platform way is not trivial, so the compiler expects to be executed with a path that points to the...
Yes, it is an option, but it is about the same difficulty for the user than using a script ;)
Hi! The opcode you found is from a 386 instruction - implementing the 386 instructions will be a significant effort, yes - it will be certainly easier to take an...
Further explaining, the 66h is not an opcode, it is an opcode prefix, that changes the next instruction size from 16bit to 32bit, so to implement it you will need...