-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Copying a BASIC program alerts constantly with "problematic byte 13" #107
Comments
BTW this feature is intended for uses like putting assembler code into a comment in the program - e.g. you can use inline assembler to assemble the program as if it's at
Then you can copy the reported number of bytes from Or add Another use is to create pre-computed binary data using BASIC to stick in a REM or similar. Trying to copy the tokenised BASIC program code isn't the intended use (also not a very useful non-intended use AFAICS). The default address and length being the BASIC program was not a good choice. Not sure there's really a good useful default but we could default to an interesting string from the ROMs. The current value of The reason for the alert is that bytes The number of alerts should be finite (and are in my testing) but multiple duplicate alerts are unhelpful and it'd be better to count how many of each we saw and report a single alert if we saw any summarising how many of each. I can try to improve this, and I guess now you've fixed However I'd still really like to resolve the changed placement of controls - they still feel illogical to me now - the "save memory" takes memory from the emulator not from the editor so logically should be with the emulator pane - if you run, edit the program, save memory what you save doesn't reflect what's now in the editor which even tripped me up just now checking the alert behaviour. The icons also seem much less clear than the words were (and I miss the cute detail that the buttons were BASIC keywords). If active use of the editor on mobile is a real thing (and those log entries are not just people clicking on the link from the bot post and only viewing the code) then we could presumably make the buttons icons for mobile but words for desktop. |
I fixed an error where
this.emulator.readmem
wasn't defined. But...looks like there's code that alerts all the time:@8bitkick I'm not sure what this is supposed to do but copying any memory pretty much kills the browser with this (as it has a modal
alert
up)The text was updated successfully, but these errors were encountered: