Commit Graph

83073 Commits

Author SHA1 Message Date
Vas Crabb
92610fb3a3 ui/viewgfx.cpp: Remember orientation/position/scale per tilemap; more encapsulation. 2022-05-21 17:56:09 +10:00
Olivier Galibert
12b6572a7e perfrman: Partially guessed video adjustment 2022-05-21 09:24:37 +02:00
Vas Crabb
b2ef8aba82 machine/7474.cpp: Fixed use of uninitialised members. 2022-05-21 16:09:23 +10:00
Vas Crabb
c60cc01dbc netlist/plib: Fixed detection of clang versions with noexcept issue, added feature constants for C++ standard library version. 2022-05-21 15:39:18 +10:00
Nigel Barnes
753756988d bus/acorn/cms/4080term: Use raw screen params. 2022-05-21 02:02:31 +01:00
Nigel Barnes
6abfd7c097 tube: Implemented parasite reset PRST line, and added to all co-processors. 2022-05-20 22:45:06 +01:00
Nigel Barnes
f3328f2255 bus/mtx/cfx: Do nothing when both READ/WRITE are asserted. 2022-05-20 22:45:06 +01:00
smf-
988a9b974a partial revert of 68ebb786d1 2022-05-20 16:31:52 +01:00
smf-
68ebb786d1 Added Z80 Video Pak cartridge to Commodore 64. [smf]
Fixed XL-80 cartridge lower case and inverse video [smf]
2022-05-20 15:06:04 +01:00
hap
028b97b995 fidel_csc: get rid of ca1/cb1 read handlers, the easy way 2022-05-20 15:10:40 +02:00
Vas Crabb
ffab5b98fa
ui/viewgfx.cpp: Added ability to restrict tiles to integer scale factors. (#9783)
Also encapsulated things a bit more and made the UI manager hold onto the storage rather than keeping it in file statics.
2022-05-20 18:26:14 +10:00
Patrick Mackinlay
56702e4217 labtam3232: new card skeleton 2022-05-20 14:55:29 +07:00
Ivan Vangelista
1d2fe9cdb1 funworld.cpp: actually removed MNW flag from multiwina 2022-05-20 05:54:23 +02:00
Patrick Mackinlay
3f4e4ee985 rs2030: add mouse 2022-05-20 10:43:36 +07:00
Robbbert
7519508363 krokha,iphone2g: Fixed "Attempt to register save state entry after state registration is closed" 2022-05-20 11:31:04 +10:00
Nigel Barnes
d586398eba bus/bbc/internal/cumana68k: Add default MFM floppy formats. 2022-05-20 02:02:36 +01:00
Nigel Barnes
6e80edf3be bus/mtx/cfx: Do nothing when both CS0/CS1 are asserted. 2022-05-20 02:02:36 +01:00
smf-
b6c0392fa9 Patch Commodore LCD RTC register table by swapping day & month values. [smf] 2022-05-20 01:19:38 +01:00
Ivan Vangelista
066f2005dd funworld.cpp: used the decryption PROM in other set where available, too (megacard, powercrd) 2022-05-19 22:29:58 +02:00
Ivan Vangelista
46150db584 Clones promoted to working
----------------------------
Multi Win (Ver.0091, encrypted) [Ivan Vangelista]
2022-05-19 22:08:48 +02:00
Ivan Vangelista
a047f1d310 atarist.cpp: fixed compile on GCC 11.3.0 2022-05-19 21:58:40 +02:00
ICEknigh7
989edafea2
gbcolor.xml: Added Green Beret prototypes developed by Kak. (#9754)
New working software list additions (gbcolor)
--------------------------
Green Beret (prototype 1) [Kak, retroLEL]
Green Beret (prototype 2) [Kak, retroLEL]
Green Beret (prototype 3) [Kak, retroLEL]
2022-05-20 05:26:45 +10:00
AJR
aa66b4a013 atarist.cpp: Split out video and blitter as separate devices 2022-05-19 15:21:55 -04:00
eientei95
d561b82fae
spdheat.cpp: Demoted to MACHINE_IMPERFECT_SOUND. (#9779)
Analog filters and actual speaker arrangement are not emulated.
2022-05-20 05:20:23 +10:00
Devin Acker
75e986a651
3rdparty/portmidi: Fixed windows MIDI callback signatures. (#9781) 2022-05-20 04:41:08 +10:00
smf-
46a01470e6 Updated Commodore LCD colors, based on recent pictures from one of the prototypes. [smf]
Fixed Commodore LCD real time clock reading, it relies on the RTC chip being able to ground PORT A while it is set to an output. Which is documented in the 6522 datasheet as being possible. It's NMOS, so it has weak pull ups and doesn't drive it's output hard. However due to a bug in the prototype ROM code, it currently has the date and month swapped round. [smf]
2022-05-19 19:19:27 +01:00
couriersud
0c258c9d70
netlist: Fixes to address PR #9752 and issue #8590 / EMSCRIPTEN (#9773)
netlist: pointer to member function code 

- Address PR #9752 and issue #8590
- change comments in ppmf.h
- add support for function desciptors (IA64)
- sizeof(size_t) may be different on build targets
  make plib::hash use uint64 to ensure consistent static solver
  hashes across platforms (EMSCRIPTEN)
- Moved constructor and member functions outside the class declaration
  with the exception of "call" member functions.
- Updated comment on accessing RDX
- Added more test cases

* Removed execution bit on certain files
I have separated out the raw processing code into `ppmf.cpp`. I have
also taken first steps to clean the abi identification.

The code submitted now supports:

a) The unknown virtual inheritance case with specific code for MSVC for
simple (i.e. scalar, void, reference, pointer) return types using the
optimized code. This is the test case only supported under MSVC and
which should return 7. Please have a look at the code. Basically
m_vptr_offset is an index into a pointer table. It needs to be
multiplied by `sizeof(void *)`.

b) If you enable PPMF_EXPERIMENTAL complex return type member functions
for MSVC will also use the optimized code path. This is explained in
detail in the code in ppmf, including caveats and possible solutions.

c) Enabling PPMF_USE_MAME_DELEGATES will use `src/lib/util/delegate.h`
as a replacement for `ppmf.h`. This allows to run the same tests
(`nltool -c tests` from standalone build) as for the ppmf code.

d) The code now also supports `clang-cl`

e) sizeof(size_t) may be different on build targets.

Make plib::hash use uint64 to ensure consistent static solver hashes
across platforms. This fixes loading static solvers (if enabled) on
EMSCRIPTEN.
2022-05-19 19:40:00 +02:00
Ivan Vangelista
299aa2eda3 New clones marked as NOT_WORKING
--------------------------------
The House of the Dead (Revision A) [egregiousguy]

- seta.cpp: added hardware info for Caliber 50 [Guru]

- snk.cpp: added hardware info for Ikari Warriors [Guru]
2022-05-19 19:31:46 +02:00
AJR
83ce568f51 atarist.cpp: Cleanups and minor fixes
- Add cartridge software list and IPF floppy format to all sets
- Add missing handlers to (still non-working) ste, megast and megaste memory maps, making megaste a megast derivative
- Give HD6301 its own XTAL
- Use array finders for HD6301 keyboard and joystick ports
- Swap players for joystick and button inputs (needed for mouse to work)
- Remove shifter mode 1 kludge that seems to hurt more than help
2022-05-19 13:12:25 -04:00
Dirk Best
239baf84a9 mmagic: restore driver style 2022-05-19 17:28:08 +02:00
smf-
ad1f89e85c Implemented Monkey Magic flip screen & multiplexed controls. The dump is likely from a cocktail board as the screen flipping is the only indication of which player is up. [smf] 2022-05-19 14:34:10 +01:00
smf-
4c63df0d5b Don't forget the current state of dsr & rts when changing serial settings in null modem device. [smf] 2022-05-19 14:34:09 +01:00
smf-
e6e2a137e9 Always initialize upd3301 attr_extend_info, as the loop isn't guaranteed to set all entries. I don't know what real hardware would do, but it triggered a compiler warning. [smf] 2022-05-19 14:34:09 +01:00
Robbbert
9863cbfcfd eacc: fixed various regressions
s9, wmg: fixed typos
2022-05-19 15:57:35 +10:00
Ivan Vangelista
5803e4145c snowbros.cpp: corrected title for honeydol [Brian Troha] 2022-05-19 06:49:49 +02:00
Nigel Barnes
c7420cad39 New clones marked as NOT_WORKING
--------------------------------
Z-180 Series [Colin McDougall]
2022-05-18 21:07:45 +01:00
Nigel Barnes
96dc3fbee1 New working software list additions
-----------------------------------
mtx_cart: MAGROM v1.00, MAGROM v1.02, MAGROM v1.03(SP), MAGROM v1.04, MAGROM v1.05, MAGROM v1.05a, MAGROM v2.00 [Martin Allcorn]
mtx_hdd:
  CP/M 54K, CP/M 59K, Hex-Train [Andy Key]
  Fuzix OS [Alan Cox]
2022-05-18 21:07:45 +01:00
Nigel Barnes
b81f68eb66 mtx.cpp: New expansion devices CFX System and MAGROM.
- Added Reset keys and joystick ports.
- Re-implemented cartridge slot as external ROMPAK device.
2022-05-18 21:07:44 +01:00
smf-
e5790f179c Clones promoted to working
----------------------------
Skelagon [smf]
2022-05-18 18:41:53 +01:00
smf-
33f069cac0 fix for building with clang 14 as asmjit uses | & operators on bools [smf] 2022-05-18 18:39:43 +01:00
smf-
1158318356 removed some unnecessary 6821 readca1_handler/readca2_handler/readcb1_handler hookups [smf] 2022-05-18 18:37:50 +01:00
ClawGrip
0d57bab2e4
badlands_ms.cpp: Added missing PROMs. (#9775) 2022-05-19 02:12:21 +10:00
hap
74e0865e16 neogeo.lay: work around rendlay bounds issue 2022-05-18 15:04:07 +02:00
AJR
be7f167466 cfp1080s: Add some more RAM and another stub read handler 2022-05-18 07:31:07 -04:00
AJR
aa73dfde73 cpu16.cpp: Fix shift in get_xk 2022-05-18 06:31:27 -04:00
Robbbert
fa289ee99a wmg: fixed defender 2022-05-18 18:23:56 +10:00
Robbbert
78d1ae6161 wmg: saved 128k of memory. 2022-05-18 18:07:14 +10:00
Robbbert
ffdc90a18a MT08316: wmg: when a game is chosen from the menu, it has a black screen or resets [Robbbert] 2022-05-18 16:50:34 +10:00
AJR
0512871d81 umipoker, saiyukip: Remove Coin 2 and Coin 3 inputs (these appear to do nothing) and swap Coin 1 with Key In 2022-05-17 15:01:11 -04:00
Dirk Best
e949619949 einstein: Set PSG Port A default value, fixes diagnostic ROM 2022-05-17 18:53:43 +02:00