-
Notifications
You must be signed in to change notification settings - Fork 113
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
Specify multiple disks using vmac-colormac? #84
Comments
Any thoughts on this? |
I am in nearly this same situation. Trying to use the loader to load a HDD image of 7.0.1 and also a CD Iso. Coming up a blank on it. minivmac2.js here. |
The command–line arguments for Mini vMac are documented online at https://www.gryphel.com/c/minivmac/control.html#command_line. When using Emularity directly, you can use var emulator = new Emulator(document.querySelector("#canvas"),
null,
new NP2Loader(…,
NP2Loader.mountFile("foo.dsk",
NP2Loader.fetchFile("Disk Image 1",
"examples/foo.dsk")),
NP2Loader.mountFile("bar.dsk",
NP2Loader.fetchFile("Disk Image 2",
"examples/bar.dsk")),
NP2Loader.extraArgs(["foo.dsk", "bar.dsk"]),
)); When uploading an item to the Internet Archive, then both disk images should be downloaded automatically provided they both have the same extension and you specified the |
Not sure what to make of it. Both the Hard Drive Image and the CD image upload OK, and the Hard Drive image runs (loading up System 7.0.1), but it immediately produces: Message Type (C) to continue And after this it only shows the HD image mounted, and not the CD image. I did try changing the file extensions to .dsk .img for both files in their zips and my config but exactly the same. My config is:
|
As a troubleshooting step, can you go to the javascript console and type |
Strange. I am getting: Uncaught Type Error: FS.readdirSync is not a function Before I input the command I am getting this though: /favicon.ico:1 Failed to load resource: the server responded with a status of 404 () |
To add complexity to the problem, my goal is to do this on Internet Archive with their in-browser emulation |
Sorry, just |
It came back with: ErrnoError {node: undefined, errno: 2, code: 'ENOENT', message: 'No such file or directory', setErrno: ƒ, …} When I attempted FS.readdir('/emulator/minivmac'), it then came back with: (5) ['MacII.ROM', 'test7', 'ecodisc', '.', '..'] I am not sure why, but it seems it doesn't like the capital letters when it comes down to the disc images, but it doesn't mind them for the rom images. For my part now I have just changed everything to lowercase and the problem is solved. It has now loaded up the iso perfectly. Thank you for all the help. |
Well, I didn’t expect that. I see from the documentation that we could pass in an optional name. I guess we could use that to override the default if we wanted. Glad you got it working though. |
You should just be able to do that. What have you tried? |
I'll try again soon. |
Forgive me if this is in the docs(?)
How can I set two disks when using Emulator: vmac-colormac on Internet Archive?
It's the type of game that checks for it's files on the external disk.
I've seen examples of PCE using two disks, but not vmac-colormac.
Any help appreciated.
The text was updated successfully, but these errors were encountered: