0 Members and 1 Guest are viewing this topic.
A bug: using the on+enter shortcut to compile disables the auto-backup feature, becauseQuote from: thepenguin77 on IRC[18:27:38] <thepenguin77> [...] when compiling from the API entry point, the option is changedAfaik, this would need the entry point to be modified to have another input...
[18:27:38] <thepenguin77> [...] when compiling from the API entry point, the option is changed
In other news, Frey continues kicking unprecedented levels of ass.
Quote from: Deep Thought on November 04, 2010, 08:02:16 pmOh, andAllowing jumping to an arbitrary place in memoryThat can be done using a simple Asm(E9), which will jump to the address of the last result
Oh, andAllowing jumping to an arbitrary place in memory
You can do that with Asm(9E):Quote from: calc84maniac on November 04, 2010, 08:07:24 pmQuote from: Deep Thought on November 04, 2010, 08:02:16 pmOh, andAllowing jumping to an arbitrary place in memoryThat can be done using a simple Asm(E9), which will jump to the address of the last resultIn other words, E8000:Asm(9E) jumps to $8000.
E9, as calc84maniac said.But it's not that simple to jump straight to a different program. Remember you can't execute code beyond the hex address $C000 (that's why programs are limited to 8811 bytes, since 8811 is the difference between $C000 and $9D95, where programs normally start). Unless you're absolutely certain the program you're looking for isn't beyond $C000 (which is perfectly possible), you have a pretty high chance of getting a RAM clear with that code.
I was wondering...the ability to use ! just before a var or whatever to check if it's false. ie instead of having to do If getKey(15) and (A=0)...it would be possible to do something like...If getKey(15) and (!A)Or is VAR=0 already an auto-optimized thing?