Jeff

Results 18 comments of Jeff

it's possible that you need to select the ROM file each time due to [this bug](https://github.com/sputt/wabbitemu/issues/36) I found.

Took a quick look -- `ans = (HLOCAL) GetRealAns(&lpCalc->cpu, buffer);` calls `symbol_to_string`. ```c uint8_t type = mem_read(cpu->mem_c, ptr++); int exp = (int) (mem_read(cpu->mem_c, ptr++) ^ 0x80); ... if (abs(exp) >...

@shmueldabomb441 source link is [here](https://github.com/sputt/wabbitemu/issues/32#issuecomment-1085942979)

Note that `GetStorageString` seems inconsistent as well. In WINDOWS it returns `%APPDATA%\Wabbitemu\` (with trailing slash), but on unix it returns `~/.wabbitemu` (no trailing slash)

I believe the fix is: ```c // portSettingsPath is "{path}\wabbitemu.ini" -- remove the filename, but keep trailing backslash. if (tempSave[i] == '\\') { tempSave[i+1] = '\0'; break; } } }...

You can install Visual Studio Build Tools using: ```PowerShell Invoke-WebRequest -Uri 'https://aka.ms/vs/17/release/vs_BuildTools.exe' -OutFile "$env:TEMP\vs_BuildTools.exe" & "$env:TEMP\vs_BuildTools.exe" --passive --wait --add Microsoft.VisualStudio.Workload.VCTools --includeRecommended --remove Microsoft.VisualStudio.Component.VC.CMake.Project ``` Don't include `--remove Microsoft.VisualStudio.Component.VC.CMake.Project` if you...

I can look into this at that time. What is the change in that timeframe that might make this more straightforward?

FYI, I integrated this change into [my fork](https://github.com/milnak/Switcheroo/)

manifest from my bucket: https://github.com/milnak/scoop-bucket/blob/main/image-usb.json

FYI, I integrated this change into [my fork](https://github.com/milnak/Switcheroo/)