-
Notifications
You must be signed in to change notification settings - Fork 23
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
Clarify that mkdos33fs does not create bootable disks #1
Comments
That is the disassembler built in to the //. The top line is giving you the register contents Accumulator, X, Y index registers, P may be the processor status register, and S is the stack pointer. 0803 is the address where the program stopped. It may be an interrupt that jumps to 800 and there is no code at 800 to execute so it generates an exception that dumps you to this utility. It has been a while. The * is the prompt like > is integer basic and ] is applesoft basic prompt. If you wanted to start executing machine code, I belive you would type the address followed by G but I would have to try a couple things to verify this. 300G at the * prompt should start execution there. Hit Return to get more memory contents or L to get a disassembly. I'm sure you can find documentation on line. |
@ohmpossum thanks for the info about the disassembler. I hope @deater could have a look at the original issue with |
I don't know if this is a more recent feature, but you have to tell
|
Thanks for the followup @Danl2620 I guess this is more or less equivalent to what i did when reusing BTW I don't think this is a recent feature, in the end my initial issue was basically about not knowing that I needed a bootable disk. |
Hi,
it looks like mkdos33fs does not generate valid "boot" disks.
Let me explain better what I mean.
I wanted to test an AppleSoft BASIC program of which I had the listing, so the plan was to generate a disk image with the tokenized BAS version of it and run it under an emulator, linapple was my choice (http://linapple.sourceforge.net/).
So this is what I first tried:
but it looks like mkdos33fs does not generate a full functioning disk image, and linapple bails out with a weird prompt, which i don't know what it is (maybe this is a linapple issue?):
On the other hand, reusing
tests/empty.dsk
worked just fine:BTW thanks a lot for dos33fsprogs, I first managed to create a working image with CiderPress (http://sourceforge.net/projects/ciderpress/) under Windows but a linux-only workflow works a lot better for me, CiderPress has some command line tools which work under linux but they are incomplete at best.
Regards,
Antonio
The text was updated successfully, but these errors were encountered: