kanjitalk755's BasiliskII code under MacOS

About BasiliskII, a 68k Mac emulator for Windows, MacOSX, and Linux that can run System 7.x through MacOS 8.1.

Moderators: Cat_7, Ronald P. Regensburg

Post Reply
emendelson
Forum All-Star
Posts: 1706
Joined: Tue Oct 14, 2008 12:12 am

kanjitalk755's BasiliskII code under MacOS

Post by emendelson »

In order for BasiliskII (built from kanjitalk755's latest code) to run correctly on a retina Mac, edit the info.plist file in the source code, and add the key:

High Resolution Capable

and set it to:

NO
emendelson
Forum All-Star
Posts: 1706
Joined: Tue Oct 14, 2008 12:12 am

Re: kanjitalk755's BasiliskII code under MacOS

Post by emendelson »

As in the Windows code that I described in a different thread, kanjitalk755's BasiliskII code for MacOSX can default to using a ROM file named "ROM" (in the same folder with the app) by adding these two lines to main_unix.cpp, after line 672:

Code: Select all

   if (PrefsFindString("rom", 0) == NULL) 
        rom_path = ("ROM");                 
And it can default to mounting a disk image named BasiliskII.dsk (in the same folder with the app) by adding these two lines to sys_unix.cpp, after line 339 (between the curly bracket and #endif):

Code: Select all

#else                                          // emendelson
    PrefsAddString("disk", "BasiliskII.dsk");  // emendelson
emendelson
Forum All-Star
Posts: 1706
Joined: Tue Oct 14, 2008 12:12 am

Re: kanjitalk755's BasiliskII code under MacOS

Post by emendelson »

And here is a build modified as described in the earlier posts in this thread:

http://www.columbia.edu/~em36/BasiliskI ... atched.zip
Post Reply