Search found 289 matches: Yosemite

Searched query: yosemite

by emendelson
Sun Mar 31, 2024 3:39 am
Forum: Mini vMac and Other Mac Emulators
Topic: Shoebill - a Macintosh II + A/UX emulator for OS X
Replies: 346
Views: 364137

Re: Shoebill - a Macintosh II + A/UX emulator for OS X

... and use lipo to merge them into a fat binary. To make things easier, I use this lipohelper Applescript: use AppleScript version "2.4" -- Yosemite (10.10) or later use scripting additions property msgTitle : "LipoHelper" property doPrompt : true -- change to false to suppress ...
by adespoton
Sat Mar 30, 2024 7:24 pm
Forum: Mini vMac and Other Mac Emulators
Topic: Shoebill - a Macintosh II + A/UX emulator for OS X
Replies: 346
Views: 364137

Re: Shoebill - a Macintosh II + A/UX emulator for OS X

... by a post you made a few weeks ago, I found my old Shoebill-based AUXrunner, and made a few changes in the AppleScript so that it would run under Yosemite on an old Mac that I keep around for this kind of thing. I set it up to use the SLIRP-based version because the old TunTap doesn't even seem ...
by emendelson
Sat Mar 30, 2024 4:13 pm
Forum: Mini vMac and Other Mac Emulators
Topic: Shoebill - a Macintosh II + A/UX emulator for OS X
Replies: 346
Views: 364137

Re: Shoebill - a Macintosh II + A/UX emulator for OS X

... by a post you made a few weeks ago, I found my old Shoebill-based AUXrunner, and made a few changes in the AppleScript so that it would run under Yosemite on an old Mac that I keep around for this kind of thing. I set it up to use the SLIRP-based version because the old TunTap doesn't even seem ...
by joevt
Thu Feb 22, 2024 2:13 am
Forum: General Macintosh Emulation
Topic: Tiger for Intel on VMs
Replies: 15
Views: 2546

Re: Tiger for Intel on VMs

... SnowLeopard.dmg mkfile -n $(((70000000000 + 0x100000 - 1) & -0x100000)) Lion.dmg mkfile -n $(((65000000000 + 0x100000 - 1) & -0x100000)) Yosemite.dmg mkfile -n $(((65000000000 + 0x100000 - 1) & -0x100000)) ElCapitan.dmg mkfile -n $(((60000000000 + 0x100000 - 1) & -0x100000)) Sierra.dmg ...
by kataetheweirdo
Wed Jan 04, 2023 2:34 pm
Forum: General Macintosh Emulation
Topic: Programming my own Mac emulator
Replies: 87
Views: 57557

Re: Programming my own Mac emulator

I actually found a document relating to the Yosemite Boot ROM, specifically the engineering requirements spec. The copy available is incomplete, but it goes over a lot of technical details for the Mac. There's also source code available from Apple, ...
by Ronald P. Regensburg
Mon Jul 18, 2022 6:51 am
Forum: SheepShaver
Topic: sheepshaver freezes after a while
Replies: 5
Views: 947

Re: sheepshaver freezes after a while

Next time, please also give information about your host system and the SheepShaver build date. In previous posts you mention MacOSX 10.10 (Yosemite) as your host system. Which SheepShaver build (build date, not version number) do you use? The build date is the creation date that can be found ...
by afro
Fri Mar 18, 2022 10:51 pm
Forum: General Macintosh Emulation
Topic: emulation options
Replies: 1
Views: 7198

emulation options

I have tried Sheepshaver and Basilisk II on my host system Yosemite X 10.10 to run the game I want: Barrack. The game I wanted to play Barrack does not work at all on Sheepshaver and works for very short time before freezing on Basilisk II. My questions ...
by Ronald P. Regensburg
Sun Mar 13, 2022 12:50 pm
Forum: Basilisk II
Topic: Basilisk II does not start in final stage
Replies: 17
Views: 6616

Re: Basilisk II does not start in final stage

... emulator. For BasiliskII that is System 7.x through MacOS 8.1 and for SheepShaver that is System 7.5.3 through MacOS 9.0.4. I suppose OSX 10.10 (Yosemite) is your host system, the system on which you use the emulator. The fact that BasiliskII apparently runs fine on your host (you can see the ...
by emendelson
Sun Sep 12, 2021 12:11 am
Forum: SheepShaver
Topic: Copying pictures
Replies: 115
Views: 19830

Re: Copying pictures

... seems to work correctly - using your earlier repeat block, not the new code in your recent message: use AppleScript version "2.4" -- Yosemite (10.10) or later use scripting additions use framework "Foundation" -- needed for option-key test use framework "AppKit" ...
by Ronald P. Regensburg
Tue Sep 07, 2021 8:13 pm
Forum: QEMU
Topic: Qemu package and guide for OSX available
Replies: 343
Views: 388756

Re: Qemu package and guide for OSX available

In 2017 macOS 10.13 (High Sierra) was introduced, so 2017 builds will probably not run on OSX 10.10 (Yosemite) or earlier.
by emendelson
Thu Sep 02, 2021 12:26 pm
Forum: SheepShaver
Topic: Copying pictures
Replies: 115
Views: 19830

Re: Copying pictures

... there so I don't know how to fix it. Mabam, am I doing something wrong (as is likely)? Here's my code: use AppleScript version "2.4" -- Yosemite (10.10) or later use scripting additions use framework "Foundation" -- needed to check keyboard state use framework "AppKit" ...
by mabam
Sat Aug 28, 2021 8:25 pm
Forum: SheepShaver
Topic: Copying pictures
Replies: 115
Views: 19830

Re: Copying pictures

... so the user can collect the file from there and open it with an application of choice. Here’s the code: use AppleScript version "2.4" -- Yosemite (10.10) or later use scripting additions if item 1 of item 1 of (clipboard info) as string is not "picture" then display dialog "No ...
by mabam
Fri Aug 27, 2021 10:42 pm
Forum: SheepShaver
Topic: Copying pictures
Replies: 115
Views: 19830

Re: Copying pictures

... stop the script if in a try block. That’s still something to look into. Here’s the amended code: use AppleScript version "2.4" -- Yosemite (10.10) or later use scripting additions if item 1 of item 1 of (clipboard info) as string is not "picture" then display dialog "No ...
by emendelson
Fri Aug 27, 2021 1:16 pm
Forum: SheepShaver
Topic: Copying pictures
Replies: 115
Views: 19830

Re: Copying pictures

... I don't really know AppleScript, so this is very badly written, and any improvements will be welcome. use AppleScript version "2.4" -- Yosemite (10.10) or later use scripting additions try the clipboard as TIFF picture on error display dialog "No image data in the clipboard." ...
by Ronald P. Regensburg
Mon Apr 12, 2021 7:23 am
Forum: QEMU
Topic: Booting Mac OS 9 in Qemu for 10.6 Snow Leopard
Replies: 8
Views: 3128

Re: Booting Mac OS 9 in Qemu for 10.6 Snow Leopard

If the same backward compatibility policy was used in 2017, the earliest OSX version that version 2.7 could be used with would be OSX 10.10 (Yosemite).
September 2017 macOS 10.13 (High Sierra) was released.
by TKAussie
Wed Mar 31, 2021 5:50 am
Forum: SheepShaver
Topic: Error at line 1622 (type -1856, code -43)
Replies: 7
Views: 6647

Re: Error at line 1622 (type -1856, code -43)

... is a few years old now but I thought I'd share my experience getting this game to work. I have used Sheepshaver through several versions of OSX (Yosemite to Catalina) and haven't had any issues to get the game to work once OS9 is up and running. I'm sure I use to be able to run it from the CD-ROM ...
by estecklow
Sun Jun 28, 2020 6:28 pm
Forum: SheepShaver
Topic: Full screen problems in Mojave 10.14.6 and Catalina [SOLVED]
Replies: 85
Views: 38680

Re: Full screen problems in Mojave 10.14.6 and Catalina

Hi. I am having the same problem. I was running sheep shaver just fine but on OS X Yosemite and always ran it on full screen. But then this weekend I had to update to catalina to get another app to work. Now the same issue the other person is describing started happening ...
by sentosen
Sun May 10, 2020 12:26 pm
Forum: QEMU
Topic: Keyboard and Mouse not working in Mac OS X 10.1.3 in Qemu3
Replies: 3
Views: 3826

Re: Keyboard and Mouse not working in Mac OS X 10.1.3 in Qem

Hi Cat_7, Thanks so much for the quick reply. I am installing on a Mac host - it's an early 2008 iMac using an Intel Core 2 Duo running Yosemite (more recent OS' than that struggle to run on this iMac, unfortunately). I got the disk image from macintoshgarden (https://macintoshgarden.org/apps/mac-osx-mac-os-10-ppc ...
by mkrilano@silcom.com
Sat Jun 29, 2019 8:40 pm
Forum: SheepShaver
Topic: Mac OS 9.2.2 on Edward Mendelson pre-packaged SheepShaver?
Replies: 1
Views: 2449

Mac OS 9.2.2 on Edward Mendelson pre-packaged SheepShaver?

I'm using Edward Mendelson's excellent prepackaged SheepShaver.

On it, can I run Mac OS 9.2.2? If so, could you help me with instructions?

I know lots about Mac OS 9 and macos X (up to Yosemite), but very little about SheepShaver.

Thanks.

---Mark
by Niklas
Wed Jun 12, 2019 3:41 pm
Forum: General Macintosh Emulation
Topic: unix wont refresh
Replies: 9
Views: 4966

Re: unix wont refresh

I am using a Macbookpro host OSX Yosemite and using Basilisk II Mac OS 7.5.3 Up until now I only tryed to open the unarchived files directly from Unix. Copying them to the HD in Basilisk II now definitely works and is a great advice :) Unfortunately ...
by kelvin31415
Mon Apr 01, 2019 1:54 pm
Forum: SheepShaver
Topic: Hardware cursor very large in 2.5 (2019-03-29)
Replies: 8
Views: 4493

Re: Hardware cursor very large in 2.5 (2019-03-29)

Yes! This version solves the issue and runs on both my High Sierra and Yosemite machines. Also runs on Mavericks and El Capitan.

Many thanks to you and kanjitalk755!
by Ronald P. Regensburg
Mon Apr 01, 2019 10:58 am
Forum: SheepShaver
Topic: Hardware cursor very large in 2.5 (2019-03-29)
Replies: 8
Views: 4493

Re: Hardware cursor very large in 2.5 (2019-03-29)

... from High Sierra to macOS 10.14.4 Mojave. This build was created with Xcode 10.2 on macOS 10.14.4. Does it run on both your High Sierra and Yosemite machines?
by kelvin31415
Sun Mar 31, 2019 1:06 pm
Forum: SheepShaver
Topic: Hardware cursor very large in 2.5 (2019-03-29)
Replies: 8
Views: 4493

Hardware cursor very large in 2.5 (2019-03-29)

... true scale_nearest true The large cursor remains for any settings of scale_integer and scale_nearest. I have also tried this build on a non-retina Yosemite machine and the issue does not occur there.
by emendelson
Wed Mar 27, 2019 12:13 am
Forum: Other SheepShaver configurations
Topic: Frequent "~MacOS9BackgroundScript" aborts, error type 2 or 3
Replies: 4
Views: 10193

Re: Frequent "~MacOS9BackgroundScript" aborts, error type 2

Until this gets moved to the proper forum, the answer (I'm sorry to say) is: I have no idea of how to fix it. One possibility is this: In Yosemite, open a terminal and enter cd ~/Documents/SendToMacOS9 ls -a If any files are listed in the folder, delete them. They may be triggering the error ...
by mkrilano@silcom.com
Tue Mar 26, 2019 11:19 pm
Forum: Other SheepShaver configurations
Topic: Unable to copy files to host: File some object wasn't found
Replies: 4
Views: 9981

Unable to copy files to host: File some object wasn't found

... pre-packaged SheepShaver, from URL http://www.columbia.edu/~em36/macos9osx.html. My host is a late 2013 iMac (2.7 GHz Intel Core i5), running Yosemite 10.10.5. When I first installed this emulator, I could copy files from Mac OS 9 to the Yosemite host by dropping the file onto the icon "Copy ...