Search found 437 matches
- 13 Feb 2025 10:05
- Forum: MEMU
- Topic: Bill Brendling's version of MEMU
- Replies: 29
- Views: 160457
Re: Bill Brendling's version of MEMU
Oh, that brings me to the only real bug. The 80 column window keeps getting recreated and the old one orphaned. e.g. bring up the settings and they appear in a new window, leaving the old MTX window frozen. Use Reset from the options and a new MTX window appears leaving the settings window behind e...
- 11 Feb 2025 18:46
- Forum: MEMU
- Topic: Bill Brendling's version of MEMU
- Replies: 29
- Views: 160457
Re: Bill Brendling's version of MEMU
keyboard.jpeg Just to illustrate, I borrowed the above image from https://www.dummies.com/article/technology/computers/basic-skills/the-general-keyboard-layout-on-a-laptop-202099/ . Note the symbols bottom right on the keys "7" to "0", "U" to "P", "J&quo...
- 11 Feb 2025 11:16
- Forum: MEMU
- Topic: Bill Brendling's version of MEMU
- Replies: 29
- Views: 160457
Re: Bill Brendling's version of MEMU
I thought most laptop keyboards had a Fn key, which when held down caused some of the keys on the right hand side of the main keyboard to send keypad scan codes. Certainly all the laptops I have had do so. In MEMU, keyboard events are captured in the various win_*.c files (depending on which version...
- 07 Feb 2025 17:59
- Forum: MEMU
- Topic: Bill Brendling's version of MEMU
- Replies: 29
- Views: 160457
Re: Bill Brendling's version of MEMU
I have pushed another revision.
I revised your PATH search routine so that it does not use MAX_PATH.
I revised your PATH search routine so that it does not use MAX_PATH.
- 06 Feb 2025 21:54
- Forum: MEMU
- Topic: Bill Brendling's version of MEMU
- Replies: 29
- Views: 160457
Re: Bill Brendling's version of MEMU
Doesn't quite work, src/memu/CMakeLists.txt needs editing around line 220 to add an entry for Darwin. OK, I have hopefully added that. Now I'm going down the rabbit hole of "find_package" which seems to be overly complex. Why can't it just use environment variables as as "EXTRALIBS&q...
- 01 Feb 2025 18:01
- Forum: MEMU
- Topic: Bill Brendling's version of MEMU
- Replies: 29
- Views: 160457
Re: Bill Brendling's version of MEMU
I have pushed some modifications to support MacOS, but I have no way of testing them. nfx.c has been modified so that (hopefully) the opened network sockets are set to non-blocking as required. main.c has been modified to (hopefully) set the path to to the executable for MacOS. I am not sure whether...
- 31 Jan 2025 11:28
- Forum: MEMU
- Topic: Bill Brendling's version of MEMU
- Replies: 29
- Views: 160457
Re: Bill Brendling's version of MEMU
I don't have the hardware to test building on MacOS. I am surprised Perl is needed. While my Linux distro probably has Perl installed, I am fairly certain I don't have it installed on Windows. Compiling on Windows uses MSVC and on Linux uses GCC. I have never tried with CLang. The fact that you are ...
- 29 Jan 2025 18:43
- Forum: MEMU
- Topic: Bill Brendling's version of MEMU
- Replies: 29
- Views: 160457
Re: Bill Brendling's version of MEMU
This discussion prompted me to revisit this. I have revised the SDL version to use SDL v3, which has better Wayland support. SDL3_net turns out to be a total re-write compared with SDL2_net. Unfortunately the new version is not suitable for Wiznet emulation. In particular the new library has no way ...
- 25 Jan 2025 19:42
- Forum: MEMU
- Topic: Bill Brendling's version of MEMU
- Replies: 29
- Views: 160457
- 25 Jan 2025 18:40
- Forum: MEMU
- Topic: Bill Brendling's version of MEMU
- Replies: 29
- Views: 160457
Re: Bill Brendling's version of MEMU
I have just pushed a minor tweak to the code. If building with MFX emulation enabled (which it is by default), the correct port addresses 0xA0 to 0xA3 are now used for the Wiznet emulation. If building with NFX support but without MFX, then the original addresses are used. The other possible good ne...