Search found 38 matches

by RichCini
Fri Jan 19, 2024 9:33 pm
Forum: Mini vMac and Other Mac Emulators
Topic: MAME 2023 Mac emulation updates
Replies: 3
Views: 1231

Re: MAME 2023 Mac emulation updates

I just saw this and it's awesome! I downloaded it and so far it works great with some of my old disk images that I had made for vMac. I'm going to try various disks/hard drives and see what happens. I know MAME uses a rom list which ties to the zip files, and the ROM files look to be split like the ...
by RichCini
Sat Dec 03, 2022 2:17 pm
Forum: Basilisk II
Topic: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina
Replies: 33
Views: 11568

Re: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina

Thanks Ronald...works great.

I would also note that this build is super fast. Not sure if any optimizations had been done since last year (I didn't think so) but it runs really well on my Intel-based iMac.

Thanks again!
Rich
by RichCini
Wed Nov 30, 2022 12:54 am
Forum: Basilisk II
Topic: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina
Replies: 33
Views: 11568

Re: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina

Great, Ronald, thanks. I'll see if I can find the gmp/mpfr instructions and try that as well.

Rich
by RichCini
Tue Nov 29, 2022 1:18 am
Forum: Basilisk II
Topic: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina
Replies: 33
Views: 11568

Re: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina

Following up on this, I just downloaded the most recent pre-built OSX version of Basilisk II from September 13, 2022 and the startup chime no longer works. The kanjitalk755 fork does contain the proper code, but the cebix does not. Code from the August 1, 2021 download works fine. Just thought I'd m...
by RichCini
Mon Feb 08, 2021 5:32 pm
Forum: Basilisk II
Topic: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina
Replies: 33
Views: 11568

Re: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina

@kanjitalk755 placed the code in audio_sdl.cpp and calls it at the end of audio initialization so that it will work with both BII and SS. I have only tried the BII version with the latest pull and it works fine.

Rich
by RichCini
Sun Feb 07, 2021 2:04 am
Forum: Basilisk II
Topic: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina
Replies: 33
Views: 11568

Re: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina

Thanks. Pull requests submitted (hopefully I did it right...first-time Github contributor).

Rich
by RichCini
Sat Feb 06, 2021 7:59 pm
Forum: Basilisk II
Topic: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina
Replies: 33
Views: 11568

Re: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina

So based on the last site, the chime sounds before the desktop appears. Right now, it sounds before the main window opens. Probably tough to find the exact right spot because of the execution speed. I've tried it in a few places and it seems to work in each place. I also like the mac-rom site. Very ...
by RichCini
Sat Feb 06, 2021 5:33 pm
Forum: Basilisk II
Topic: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina
Replies: 33
Views: 11568

Re: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina

Thanks. In which chase, the "right" place for the call to PlayStartupChime() is @ main.cpp:196 (adjusted for adding "#include startupchime.hpp") after the call to PatchROM(). I made the patch into a separate source file/header. As for playing what's in ROM, is the chime stored as...
by RichCini
Sat Feb 06, 2021 1:21 pm
Forum: Basilisk II
Topic: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina
Replies: 33
Views: 11568

Re: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina

Thanks! If you’d like I can PM you the same code in two source files rather than in-line or I can try to submit on GitHub. Up to you. Also, I’d like to find a better spot for the chime to sound, like after main window creation. If you can tell me where that is, I can test it. The original spot is af...
by RichCini
Sat Feb 06, 2021 2:08 am
Forum: Basilisk II
Topic: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina
Replies: 33
Views: 11568

Re: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina

Ok, I did a little work on this today and I can get a startup sound working in the OSX build. The below code can be pasted into main_unix.cpp @ line 865. It's not perfect because it occurs before the main window opens, but it's close. The "right" place for it would be just after the main w...
by RichCini
Thu Feb 04, 2021 2:24 pm
Forum: Basilisk II
Topic: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina
Replies: 33
Views: 11568

Re: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina

Thanks @Cat_7 for that link, it was very helpful. I didn't see the source archive there, even for the Build 142 referenced. Is that available somewhere or really is it just the small code snippet for startupsound later in the thread? If it's that simple, then I'd guess adding a call to the sound som...
by RichCini
Thu Feb 04, 2021 12:48 pm
Forum: Basilisk II
Topic: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina
Replies: 33
Views: 11568

Re: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina

Ron -

Thanks, that’s helpful. Two questions to help narrow things down since I may try adding it. Does the sound exist on the Windows platform and is the sound data contained in the ROM and if so, what format?

Rich
by RichCini
Wed Feb 03, 2021 11:20 pm
Forum: Basilisk II
Topic: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina
Replies: 33
Views: 11568

Re: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina

I took a look at the prefs file and there isn't anything in there to indicate a file to play (or not play). I might peruse the source code to see where it might be. I have a few different sound files (WAV format). At least it's not just me :-) I did find one mention in rom_patches.c about skipping t...
by RichCini
Wed Feb 03, 2021 10:08 pm
Forum: Basilisk II
Topic: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina
Replies: 33
Views: 11568

Re: Sound issues with BasiliskII-1.0 SDL2 and OSX Catalina

Going back to the sound issues, I found another thread (https://www.emaculation.com/forum/viewtopic.php?f=6&t=9134) which says it relates to the ROM version. Indeed, this fixed it for me, changing from the Q900 to the Q650 ROM. So, all good there. The only thing to fix is the startup chime. I sa...
by RichCini
Fri Mar 13, 2020 3:13 pm
Forum: Basilisk II
Topic: Build kanjitalk755 code under Mojave & Xcode 10?
Replies: 10
Views: 5906

Re: Build kanjitalk755 code under Mojave & Xcode 10?

Well, that worked for me (XCode 11.3.1 on Catalina). The build still produces a few warnings: three functions without a prototype, two depreciated functions (AuthorizationCopyPrivilegedReference and AuthorizationExecuteWithPrivileges) and two about promoted type "int" not compatible with s...
by RichCini
Sun Mar 08, 2020 6:39 pm
Forum: Basilisk II
Topic: New System 7 setup on OSx Catalina
Replies: 127
Views: 84469

Re: New System 7 setup on OSx Catalina

Ronald P. Regensburg wrote:
RichCini wrote:I had it in Documents/XCode Projects
You are supposed to have a Documents folder in your Home folder. Did you create another Documents folder at root level on your System disk? Or where?

No. The files were originally in /Users/racini/Documents/XCode Projects/. Now they're at /Users/racini.
by RichCini
Sun Mar 08, 2020 4:15 pm
Forum: Basilisk II
Topic: New System 7 setup on OSx Catalina
Replies: 127
Views: 84469

Re: New System 7 setup on OSx Catalina

I do not know if there is a software problem on your Mac or if it is something you do. It should be very simple. This how I do it: 1. Make sure SDL2.framework version 2.0.10 is installed in /Library/Frameworks/ 2. Empty the folder ~/Library/Developer/Xcode/DerivedData 3. Download the zipped source ...
by RichCini
Sun Mar 08, 2020 3:02 pm
Forum: Basilisk II
Topic: New System 7 setup on OSx Catalina
Replies: 127
Views: 84469

Re: New System 7 setup on OSx Catalina

Thanks for posting the compiled binary! After downloading and loading the revised XCode project on Catalina/XCode 11.3.1, I still get the same 3 warnings and 2 errors (although if I re-run the release build, I then get 176 warnings). The error relates to the CPU part again. I navigated to the MacOSX...
by RichCini
Sat Mar 07, 2020 6:30 pm
Forum: Basilisk II
Topic: New System 7 setup on OSx Catalina
Replies: 127
Views: 84469

Re: New System 7 setup on OSx Catalina

I’m using 11.3.1 on Catalina and 8.3.3 on Sierra.

Rich
by RichCini
Sat Mar 07, 2020 3:55 pm
Forum: Basilisk II
Topic: New System 7 setup on OSx Catalina
Replies: 127
Views: 84469

Re: New System 7 setup on OSx Catalina

Yup, already did — started from scratch with 11.3.1. Very frustrating. I have a Parallels VM setup with OS X Sierra and Xcode 8.3.3. I'm going to see if the results are any different with that configuration. {...later...} Indeed, it still doesn't work, but it throws only one warning (about the depre...
by RichCini
Sat Mar 07, 2020 3:38 am
Forum: Basilisk II
Topic: New System 7 setup on OSx Catalina
Replies: 127
Views: 84469

Re: New System 7 setup on OSx Catalina

Thanks. I didn't have a previous build of this, so there was no code leakage so to speak. So, I unzipped the archive again (macemu-master from kanjitalk755), navigated to the project file in src/MacOS and opened it. I changed the settings to Release, cleaned the build folder (just in case) and ran t...
by RichCini
Sat Mar 07, 2020 1:06 am
Forum: Basilisk II
Topic: New System 7 setup on OSx Catalina
Replies: 127
Views: 84469

Re: New System 7 setup on OSx Catalina

Yes. /Library/Developer/CommandLineTools. "xcode-select -v" reports version 2373.
by RichCini
Fri Mar 06, 2020 9:21 pm
Forum: Basilisk II
Topic: New System 7 setup on OSx Catalina
Replies: 127
Views: 84469

Re: New System 7 setup on OSx Catalina

Yes, during building. I'm looking at the log now. 2 categorized errors (both having to do with the missing file) and 178 issues in 7 categories: Format String Issue, Depreciations, Unused Entity Issue, Value Conversion Issue, Semantic Issue and Warnings. There are also two project warnings about loc...
by RichCini
Fri Mar 06, 2020 4:53 pm
Forum: Basilisk II
Topic: New System 7 setup on OSx Catalina
Replies: 127
Views: 84469

Re: New System 7 setup on OSx Catalina

Now that my system is back up, I decided to make a current build from kanjitalk755. Same issue with missing files. Using XCode 11.3.1 on Catalina 10.15.3. Need to dig into the missing files...the file referenced by the OP doesn't exist in the src folder.
by RichCini
Fri Mar 06, 2020 3:57 am
Forum: Basilisk II
Topic: New System 7 setup on OSx Catalina
Replies: 127
Views: 84469

Re: New System 7 setup on OSx Catalina

Right now I’m doing a system restore from the Catalina installer. Hopefully that will fix it. It’s odd — on the first reboot the kext disappeared even though it was notarized and I authorized the install. It might be better to just install the full Tunnelblick app but don’t configure it. That way yo...