Commit Graph

17177 Commits

Author SHA1 Message Date
Miodrag Milanovic
40a39cedf1 Added Sound Blaster 16, and proper 16 bit ISA DMA handling [Carl]
Added IBM VGA card [Carl]
2012-09-04 06:31:18 +00:00
Brian Troha
b35677cdee segas32.c: Added "(Japan)" to F1 Super Lap & Dragon Ball Z V.R.V.S. game titles as these 2 games are explicitly for the Japan region. - NW 2012-09-04 02:59:51 +00:00
Michaël Banaan Ananas
4503b931b3 ah right, nevermind 2012-09-04 00:07:14 +00:00
Scott Stone
de40e4896f Continuing new device implementation for SN76496 and clones - qix.c [Osso] 2012-09-03 23:18:51 +00:00
Sandro Ronco
495f8bd510 (MESS) Updated KC D004 and TVC HBF to use selectable BIOS. (nw) 2012-09-03 21:55:20 +00:00
Curt Coder
adfeb58842 (MESS) crvision: Converted to use new sn76494_device. (nw) 2012-09-03 21:25:04 +00:00
Michaël Banaan Ananas
b9e1ceeff4 relocated scanline timer start at the first active pixel instead of left border, this makes vdp interrupt timing accurate 2012-09-03 21:00:28 +00:00
Aaron Giles
900ddb7a9b First pass at modernizing the jaguar/cojag driver. Removed all
static variables and use of AM_LEGACY_BASE/SIZE.
2012-09-03 20:41:50 +00:00
Michaël Banaan Ananas
11447faf9b make the undumped tilehalf empty instead of random garbage (ROMREGION_ERASE00 does not work there) 2012-09-03 19:26:37 +00:00
Miodrag Milanovic
894a91d188 DEVINFO_* to CPU_INFO_*, and some cleanups (no whatsnew) 2012-09-03 18:24:54 +00:00
Miodrag Milanovic
f3d1a45784 Fixed inheritance (no whatsnew) 2012-09-03 17:29:55 +00:00
Brian Troha
8bb6de3fe6 new US Superman clone
taito_x.c: Corrected the rom names for the Superman sets. Added info about an alternate rom layout using a daughter card and half sized mask roms. Changed Gigandes (Japan) to Gigandes (earlier) as both sets support English / Japanese via dipswitch. But one set has a revised and corrected service mode. [Brian Troha, Dave France, The Dumping Union]

New Clone Added
-----------------------------------
Superman (US) [Dave France, The Dumping Union]
2012-09-03 15:03:22 +00:00
Miodrag Milanovic
071eb8de4b Cleanup and some inheritance fixes (no whatsnew) 2012-09-03 15:00:20 +00:00
Angelo Salese
eb4aa7ad05 One line to conquer 'em all ... 2012-09-03 14:45:56 +00:00
Michaël Banaan Ananas
fd0f2d071c Game promoted to working
--------------------------
F1 Super Lap [David Haywood]
2012-09-03 14:12:03 +00:00
Miodrag Milanovic
c052b16e98 converted remaining legacy_device_base users (no whatsnew) 2012-09-03 14:11:16 +00:00
Miodrag Milanovic
b711b1a007 conversion of legacy devices into modern wip (no whatsnew) 2012-09-03 13:56:17 +00:00
Robbbert
f552908ea9 Pinball: Various preliminary works. 2012-09-03 13:27:57 +00:00
Michaël Banaan Ananas
96069a185d patches to make f1 super lap work, submitted by Haze, make Sixtoe happy! 2012-09-03 13:27:36 +00:00
Robbbert
459a3a7b8e Pinball: Various preliminary works. 2012-09-03 09:48:59 +00:00
R. Belmont
997b61b948 PowerPC: Fixed 601-type BAT processing [R. Belmont] 2012-09-03 03:58:17 +00:00
mahlemiut
6b25e11946 (MESS) svga_s3: Made co-ordinates always relative to the start of VRAM. This fixes Virtual Pool using accelerated S3 video drivers. 2012-09-03 01:56:29 +00:00
Angelo Salese
edca1537c8 Bunch of SNES changes, nw 2012-09-03 01:17:50 +00:00
Scott Stone
c3a5dcfeb0 Verified Dip Settings using Dip Sheet and through playtesting for deadconx, deadconxj [Tafoid] 2012-09-03 01:04:02 +00:00
Angelo Salese
44dbf7142e Fixed vblank line irq triggering 2012-09-02 23:41:45 +00:00
Angelo Salese
b35294cc82 New WORKING game
--------------------
Little Robin [David Haywood]
2012-09-02 23:32:35 +00:00
Angelo Salese
59e803a5da Fixed NSS reset behaviour, now games shouldn't die anymore when the CPU halts 2012-09-02 23:11:12 +00:00
Michaël Banaan Ananas
2da493f56d get rid of old speedup hack (besides, it made halt timing inaccurate on drivers with custom cycletables) 2012-09-02 22:52:44 +00:00
Angelo Salese
68184de87e Fix compile 2012-09-02 22:50:14 +00:00
Angelo Salese
5b96cf6101 (MESS) Fixed incorrect SPC700 IPL ROM behaviour in SNES driver(s), fixes some (not all) crashes at soft reset [Angelo Salese] 2012-09-02 22:35:44 +00:00
Angelo Salese
b9254191b0 Missed one 2012-09-02 22:22:52 +00:00
Angelo Salese
2ecd9f2054 Kill user5 in SNES related drivers, nw 2012-09-02 22:22:28 +00:00
Ville Linde
65d5448f20 nwk-tr.c: Improved LAN controller emulation [Ville Linde] 2012-09-02 21:17:19 +00:00
R. Belmont
48500854ab pwrmac doesn't need the ROM overlay (nw) 2012-09-02 20:54:51 +00:00
Aaron Giles
3dd78d1ddb Remove some AM_LEGACY_BASE stuff. 2012-09-02 19:46:26 +00:00
Aaron Giles
d3dc6db3f8 Created new sprite device base class, which manages a bitmap
and a sparse bitmap for tracking which areas got updated.
This allows sprites to be rendered independently to their own
bitmap and then mixed in a final step. Converted the Sega
sprite device over to this new model, and moved the mixing
steps out of the sprite implementations and into the driver-
specific video updates where it belongs. [Aaron Giles]

Added some further methods and helpers to the bitmap_t and
rectangle classes. [Aaron Giles]

Created a sega_16bit_common_base class which handles the
common Sega palette RAM mappings and open bus reads. 
[Aaron Giles]
2012-09-02 19:46:02 +00:00
Curt Coder
08b42aabaa (MESS) Added PET cassette port slot interface to vic20, c64, and plus4. Implemented 1530/1531 datassette as slot devices. Converted MOS6581 interface to devcb. [Curt Coder]
(MESS) vic20: Added floating bus read support to VIC and cartridge interface.
(MESS) vic10: Added floating bus read support to VIC-II and cartridge interface.
(MESS) c64: Added floating bus read support to cartridge interface. [Curt Coder]
(MESS) plus4: Added floating bus read support to TED and cartridge interface. Implemented some Diag264 test cartridge loopback connectors. [Curt Coder]
(MESS) c16: Added PAL/NTSC variants. (nw)
(MESS) v364: Fixed speech ROM mapping. (nw)
(MESS) compis: Separated keyboard to its own file. (nw)
(MESS) huebler: Cleanup. (nw)
2012-09-02 13:46:14 +00:00
Ville Linde
c77db05c73 cobra.c: Added DMA sound streaming. 2012-09-02 12:33:21 +00:00
Ville Linde
bf39088b47 ppc: Implemented PPC403 DMA chaining [Ville Linde] 2012-09-02 12:32:36 +00:00
mahlemiut
a963c7c3ee (MESS) svga_s3: added memory-mapped I/O ports, and various other updates. 2012-09-02 11:56:14 +00:00
Scott Stone
7125e6c46e littlerb.c: Things are starting to make a little more sense now.. still too many hacks and things to figure out, but it looks almost reasonable in places now. Game is playable to a degree as you can finally see scores, "ROBIN" and more. From Haze (nw) 2012-09-02 11:14:20 +00:00
Michaël Banaan Ananas
302206d82f derp 2012-09-02 10:48:17 +00:00
Scott Stone
426cb2d720 Continuing new device implementation for SN76496 and clones - circusc.c, gberet.c, guab.c, homedata.c, lasso.c, segag80r.c [Osso] 2012-09-02 10:47:07 +00:00
Michaël Banaan Ananas
572466e6f7 panicr update, trying to understand bg collision 2012-09-02 10:36:56 +00:00
Robbbert
72ac6f24c7 zac_2 : committing current progress. 2012-09-02 10:08:48 +00:00
Robbbert
5e806c62f9 zac_1 : remainder of games (9 of them) are now working. 2012-09-02 10:06:51 +00:00
Miodrag Milanovic
aa9bbe5371 Removed legacy inline_config support and updated devices using it (no whatsnew) 2012-08-30 14:27:14 +00:00
smf-
689a84ea8f (MESS) added missing #include (nw) 2012-08-30 14:23:59 +00:00
smf-
ad02a5db29 (MESS) a little reorganisation while investigating the S1410 SASI to ST506 adapter (nw) 2012-08-30 10:20:20 +00:00
Miodrag Milanovic
5bac802b5f Removed zero sized inline_config (no whatsnew) 2012-08-30 10:06:22 +00:00
mahlemiut
76571c8161 (MESS) svga_s3: Implemented pattern fills, fixed some BG/FG mix functions, fixed a bug when drawing wait rectangles in reverse direction. 2012-08-30 09:13:16 +00:00
Miodrag Milanovic
005eef1e03 Removed files in MESS that are not used anymore and cleaned mess.mak of duplicated files (nw) 2012-08-30 08:44:11 +00:00
Miodrag Milanovic
81763bddf4 Removed not used legacy calls (nw) 2012-08-30 08:09:00 +00:00
Miodrag Milanovic
34f2444d32 Removed template usage for legacy devices, to make my future work easier (nw) 2012-08-30 07:34:38 +00:00
Brian Troha
5367018ea1 gradius3.c: Make the "World" set the parent, minor whitespace clean up - NW 2012-08-30 02:47:04 +00:00
Ville Linde
5212b036f8 cobra.c: Added bilinear filtering and simple alpha blending. 2012-08-29 23:26:57 +00:00
Angelo Salese
ba86db9a3c Fix a label 2012-08-29 22:30:10 +00:00
Scott Stone
6ba5fa15ea Made the genvdp a derived class of the newer sms vdp because the genesis vdp has an sms compatibility mode where it basically operates as an sms vdp (with a few changes / limitations). From Haze (nw)
Comment:  Not hooked this up to megatech yet to replace the old smsvdp code on the game screen when running sms games, but once I figure out how I'm actually going to do that, that's the plan ;-)
2012-08-29 19:30:10 +00:00
Angelo Salese
17d5c79fca Some changes, MB90082 != MB90092 2012-08-29 19:24:36 +00:00
Curt Coder
518205f199 Fixed default SDL OSX UI toggle key name. [Curt Coder] 2012-08-29 18:37:08 +00:00
Angelo Salese
c3165495ad Basic emulation of the Z180 in Super Famicom Box HW [Angelo Salese, nocash] 2012-08-29 18:24:02 +00:00
Scott Stone
b06faaf87c Continuing new device implementation for SN76496 and clones - hyperspt.c, sbasketb.c, trackfld.c, yiear.c [David Haywood, Osso]
Comment:  "make depend" is required here.
2012-08-29 18:23:02 +00:00
Scott Stone
d01ca81899 (MESS) Continuing new device implementation for SN76496 and clones - apricot.c, apricotp.c, coleco.c, m5.c, mz700.c, pc.c, pv2000.c, rx78.c, sms.c, tutor.c [Osso] 2012-08-29 18:04:27 +00:00
Scott Stone
c844f95507 Continuing new device implementation for SN76496 and clones - goldstar.c, segae.c [Osso] 2012-08-29 17:39:30 +00:00
Scott Stone
f22b57d092 Fixed for an SDL sound bug surrounding use of -speed and pausing frequently causing corrupt sound. [Antonio Giner] 2012-08-29 17:28:47 +00:00
Michaël Banaan Ananas
54816acace fix unallocated buffer 2012-08-29 17:25:24 +00:00
Jonathan Gevaryahu
5392966110 (MESS) VK100 IO mirroring, also a lot of prom tracing and comment updates [Lord Nightmare] 2012-08-29 17:06:18 +00:00
smf-
37f89103d8 made lsi53c810 optional (nw) 2012-08-29 16:53:55 +00:00
Angelo Salese
9d7806ba6f Checkpoint 2012-08-29 15:56:17 +00:00
Miodrag Milanovic
13988f7ad1 s3c24xx: placed video start and screen update into device (no whatsnew) 2012-08-29 14:10:35 +00:00
Michaël Banaan Ananas
6808b92f3c add irqack, there is no coincounter 2012-08-29 13:36:55 +00:00
Robbbert
f27a4f1d1f zac_2: added preliminary code and layout. (nw) 2012-08-29 08:47:35 +00:00
smf-
389625a63c Removed SCSIConfigTable, SCSI devices are now linked using SCSIBUS from MESS. (nw) 2012-08-29 08:35:35 +00:00
Angelo Salese
9b81dbdcc3 Preliminary implementation of the Fujitsu MB90092 OSD chip, used by Super Famicom Box [Angelo Salese] 2012-08-29 02:16:46 +00:00
mahlemiut
48e8c74bd0 (MESS) svga_s3: Fixed text rendering when full acceleration is set in win95. (no whatsnew) 2012-08-29 01:23:11 +00:00
Brian Troha
ffd410e288 20pacgal.c: Add PCB layout for Pacman - 25th Anniversary Edition. [Brian Troha] 2012-08-29 00:49:55 +00:00
Angelo Salese
3ffc088755 First step to Super Famicom Box 2012-08-29 00:34:47 +00:00
Angelo Salese
0472d67a05 Added blinking, last one for this M50458 thing 2012-08-28 22:01:51 +00:00
Angelo Salese
62968e9f3c Added sound mute in spc700 then hooked up for NSS 2012-08-28 21:21:13 +00:00
Angelo Salese
ea176d43d1 Added horizontal/vertical char size, making the NSS logo to look better 2012-08-28 20:56:43 +00:00
smf-
97d793fd12 fixed compiling with MSVC, code was probably wrong (nw) 2012-08-28 18:56:47 +00:00
Scott Stone
183e1ddd47 Shared palette fix for certain sms-based games in Mega Tech [David Haywood] 2012-08-28 18:43:27 +00:00
smf-
aabe655f96 (MESS) removed SCSIConfigTable from scsibus, scsi devices are now sub devices of the scsi bus (nw) 2012-08-28 17:27:34 +00:00
Michaël Banaan Ananas
cd5541a157 make ui_active a user option 2012-08-28 17:20:13 +00:00
Sandro Ronco
e59bf2bff6 (MESS) Added skeleton driver for AlphaSmart Pro. [JCCyC] 2012-08-28 16:38:17 +00:00
Sandro Ronco
da758f4274 (MESS) sr16: added layout for LCD. (nw) 2012-08-28 16:23:44 +00:00
Jim Stolis
e6ed765304 Added IGT ID-023 Protocol to driver. This additional DBV protocol allows all remaining unsupported sets to accept dollar bills in-game. The protocol is switchable via driver configuration (along with denomination). [Jim Stolis] 2012-08-28 16:00:57 +00:00
Ville Linde
5794765d86 konamim2.c: Fixed CD access (nw) 2012-08-28 15:07:36 +00:00
Michaël Banaan Ananas
83cec4b567 cleanup 2012-08-28 14:11:34 +00:00
Michaël Banaan Ananas
55d4f3df82 fix MT4978 regression 2012-08-28 13:52:29 +00:00
Scott Stone
01346c2a07 Fixed G-Stream G2020's sound banking. Compared with a real PCB and everything sounds as it should. [trap15] 2012-08-28 13:26:16 +00:00
Ville Linde
503802a026 cobra.c: Latest research (nw) 2012-08-28 13:04:12 +00:00
Angelo Salese
267f60c0b6 Made a shadow ROM copy, the charset is now more faithful to the original reference 2012-08-28 13:03:15 +00:00
Robbbert
b277abcbed zac_1: X key was being used twice 2012-08-28 12:24:24 +00:00
Miodrag Milanovic
39a905f270 fix compile (nw) 2012-08-28 12:22:28 +00:00
Robbbert
200b75022d zac_1: added display, inputs, notes. ewf and sshtlzac marked as working [Robbbert] 2012-08-28 11:55:33 +00:00
Michaël Banaan Ananas
12bf33632a put shabdama under nichibutsu mahjong sets 2012-08-28 11:39:01 +00:00
mahlemiut
5d078922fd (MESS) svga_s3: implemented background and foreground mix registers. 2012-08-28 11:18:00 +00:00
Michaël Banaan Ananas
26841430f8 ok, another crush roller descriptions update, after feedback from yasu 2012-08-28 10:52:09 +00:00
Robbbert
04e4b16d08 zac_1: added preliminary layout 2012-08-28 07:49:17 +00:00
mahlemiut
0a56a64821 (MESS) svga_s3: Fixed rectangle wait drawing to work under DirectX 5 (no whatsnew) 2012-08-28 06:39:34 +00:00
Angelo Salese
bc869b63d6 Improved vertical scrolling, now it's more or less reasonable 2012-08-28 03:30:17 +00:00
mahlemiut
2cbe2526cf (MESS) svga_s3: Minor fixes relating to text drawn at negative coordinates. (no whatsnew) 2012-08-28 01:24:13 +00:00
smf-
f4aea2a62c converted 53c810 to a c++ device. (nw) 2012-08-27 22:48:14 +00:00
smf-
adb561fa2c (MESS) don't use bios within device as it doesn't work 2012-08-27 21:00:14 +00:00
Angelo Salese
4ab3d9e690 Testing vertical scrolling, TBD 2012-08-27 19:39:46 +00:00
Fabio Priuli
f4fac57aa7 mz700: added a software list to document tape dumps [FatArnold]
out of whatsnew: I also hooked up the list to the driver, even if I have no idea to which degree the system works these days (I don't know much about this machine).
2012-08-27 19:31:55 +00:00
smf-
8b62642752 SCSI device tags are relative to the SCSI controller. 2012-08-27 19:08:40 +00:00
smf-
80ee39621f (MESS) fix null reference exception when using d9060/d9090 2012-08-27 18:53:44 +00:00
Sandro Ronco
ce54598401 (MESS) HD44780: added an optional pixel_update callback in order to support custom LCD. (nw) 2012-08-27 17:56:31 +00:00
smf-
5bebbc7c53 (MESS) fixed potentially uninitialized variable when building with MSVC (nw) 2012-08-27 17:32:58 +00:00
smf-
ae9d5d3bef (MESS) fixed overflow in MSVC caused by negative values being specified as signed. 2012-08-27 17:24:48 +00:00
Angelo Salese
36ff86ff17 Some improvements, some base SNES bug(s) prevents this to work like expected tho 2012-08-27 17:09:54 +00:00
Michaël Banaan Ananas
8fab9c2755 (i change my mind, prefer literal company name here) 2012-08-27 17:09:05 +00:00
Michaël Banaan Ananas
f9db65affc BTANB note 2012-08-27 16:51:23 +00:00
Angelo Salese
0757662c0c Invert BIOSes (the default one was for Multi-carts), all games with a vaild security PROM now boots properly 2012-08-27 14:50:43 +00:00
Michaël Banaan Ananas
7fd10bf8a6 gamelist alignment too 2012-08-27 14:47:03 +00:00
Michaël Banaan Ananas
104d16ffca cleanup Crush Roller sets descriptions 2012-08-27 14:39:48 +00:00
Michaël Banaan Ananas
bc005375bc source gamelist alignment 2012-08-27 14:29:09 +00:00
Michaël Banaan Ananas
137b05dbdd (nothing) 2012-08-27 13:34:36 +00:00
Robbbert
2ceee7b22f zac_1: added timers, interrupt handler and some inputs (nw) 2012-08-27 12:59:12 +00:00
Miodrag Milanovic
8dc8836863 preliminary FM support (no whatsnew) 2012-08-27 12:36:30 +00:00
mahlemiut
a0ac41719a (MESS) svga_s3: Added bitblt function. 2012-08-27 07:25:41 +00:00
Angelo Salese
5e7f308739 Written it up, but it still doesn't work 2012-08-27 03:31:35 +00:00
mahlemiut
f898f160e4 (MESS) svga_s3: Added support for the WAIT bit on rectangle drawing, fixed rectangle width and height. 2012-08-27 02:22:45 +00:00
Angelo Salese
05d6f1a2c8 Place-holders, F-Zero boots anyway 2012-08-27 01:59:14 +00:00
Angelo Salese
5e0b74b404 Various hook-ups for reset/halt lines and the like, all games but F-Zero doesn't boot now 2012-08-27 01:36:55 +00:00
Scott Stone
1d22d13b3e Continuing new device implementation for SN76496 and clones - suprloco.c, strnskil.c, shaolins.c, superdq.c, system1.c, xyonix.c and pacman.c [Osso] 2012-08-27 01:21:17 +00:00
Angelo Salese
d954b7d731 F-Zero runs without hacks, needs to implement the communication now ... 2012-08-26 23:29:17 +00:00
Angelo Salese
108327948a Update info and re-instate the URL for noca$h 2012-08-26 21:52:49 +00:00
Angelo Salese
72ba2e3e57 Got the protection to work (still says no slot for whatever reason tho) 2012-08-26 21:31:48 +00:00
smf-
1537a32446 use ncr5380 as a c++ device (nw) 2012-08-26 17:29:45 +00:00
Angelo Salese
8786656348 Let's remove credit where it doesn't belong to (PROM keys are encrypted, wants money back). 2012-08-26 16:37:12 +00:00
smf-
e2904e23a6 (MESS) removed & to fix compile (nw) 2012-08-26 16:36:07 +00:00
smf-
23533d9410 (MESS) added device_t * back to line change. (nw) 2012-08-26 15:50:29 +00:00
smf-
013bd9ab94 (MESS) converted scsibus from legacy device to c++ (nw) 2012-08-26 14:25:29 +00:00
mahlemiut
10511fec79 (MESS) Preliminary work on S3 764. 2012-08-26 13:34:49 +00:00
Robbbert
8bc9e6b113 zac_1: preliminary work (nw) 2012-08-26 12:47:43 +00:00
Robbbert
691cd8f0bc Flicker: fixed coins 2012-08-26 08:58:49 +00:00
Robbbert
1a560c368b zac_proto: added dipswitches; flicker: added standard buttons 2012-08-26 06:28:54 +00:00
Scott Stone
a7277fe7d2 Fix problem with Moonwalker (segas18.c) causing coin lockout for P1, P2 coin. 2012-08-26 00:19:26 +00:00
mahlemiut
390362ac6e (MESS) svga_s3: converted to 16-bit ISA device. The S3 chipsets have 16-bit wide registers, and can only be used on AT systems. (no whatsnew) 2012-08-26 00:15:06 +00:00
smf-
5895fb0137 use device_t.static_set_static_config 2012-08-25 22:20:45 +00:00
smf-
17aa09603a use device_t.static_set_static_config 2012-08-25 22:04:22 +00:00
smf-
ccd4b04d55 removed scsibus.h as aha1542 doesn't use it (nw) 2012-08-25 21:43:47 +00:00
Brian Troha
97653043e0 expro02.c: Minor typo correction - NW 2012-08-25 20:56:31 +00:00
Angelo Salese
3eb14bcf1c Hooked up the protection chip, fails for unknown reasons 2012-08-25 19:14:08 +00:00
Sandro Ronco
72f1501c5a (MESS) sr16: hooked up inputs and LCD. (nw) 2012-08-25 18:54:34 +00:00
Angelo Salese
15cb962318 Added underline for OSD, nw 2012-08-25 17:49:07 +00:00
Brian Troha
6017417cba new Fantasia clone
New Clone Added
--------------------------------------
Fantasia (940307 PCB) [Brian Troha, The Dumping Union]
2012-08-25 17:35:07 +00:00
Angelo Salese
771f3e785a Give the RTC some life 2012-08-25 17:27:38 +00:00
Angelo Salese
359adc3269 Written a preliminary S-3520CF RTC chip device, used by Nintendo Super System [Angelo Salese] 2012-08-25 16:23:58 +00:00
Scott Stone
7b1a2ebc9e Moved a bunch of other stuff into the device state involving 32x. There should be no real functional changes at this point. From Haze (nw) 2012-08-25 12:55:22 +00:00
Scott Stone
ca6ce00018 Continuing new device implementation for SN76496 and clones - sbugger.c, finalizr.c, pingpong.c, galaxold.c, spaceg.c, sg1000a.c, zaxxon.c, retofinv.c, senjyo.c, mrjong.c, sprcros2.c [Osso] 2012-08-25 12:53:02 +00:00
Angelo Salese
f3d21ad0c5 Fix validity check 2012-08-25 12:49:58 +00:00
Wilbert Pol
8f71a37c56 Added BGx mode selection register (nw) 2012-08-25 12:45:03 +00:00
Robbbert
6c976cac7d zac_proto: added layout (nw) 2012-08-25 12:06:40 +00:00
smf-
e93c3cedae turned WD33C93 into a device & made cps3 flash roms optional on cd sets (nw) 2012-08-25 10:30:00 +00:00
Angelo Salese
37a8c8f56f Written up a bare-bones M50458 OSD video chip device, used by Nintendo Super System HW [Angelo Salese] 2012-08-25 04:15:46 +00:00
Angelo Salese
6fb8919afa JUST A MOMENT / NON SLOT ... messages putted in VRAM 2012-08-25 02:04:46 +00:00
Angelo Salese
54a4b88472 Various hook-ups, presumably dies at the EEPROM/RTC check and throws an error (enables the OSD layer bit) 2012-08-25 00:51:15 +00:00
Angelo Salese
5fa936de0b Rewriting nss driver in progress, hooked up the security keys 2012-08-24 23:05:16 +00:00
Angelo Salese
f97838cf32 New NOT WORKING game
--------------------
LD Mahjong #4 Shabon-Dama [Yohji, ranger_lennier, Smitdogg, The Dumping Union]
2012-08-24 22:33:17 +00:00
Olivier Galibert
6752a99aea floppy: Harmless intermediate commit that could help Micko (nw) 2012-08-24 22:22:41 +00:00
Olivier Galibert
41a817b9dc Placeholders (nw) 2012-08-24 22:21:17 +00:00
Curt Coder
4612dc8a52 (MESS) c64: Fixed ROM sizes. (nw) 2012-08-24 20:27:10 +00:00
Curt Coder
ee9e573b11 (MESS) c64: Added some kernals and cleanup. (nw) 2012-08-24 20:23:12 +00:00
Sandro Ronco
0d6ceb18d9 (MESS) hr16: fixed unending samples. (nw) 2012-08-24 19:34:03 +00:00
Michaël Banaan Ananas
bfec2434fe update notes 2012-08-24 19:33:23 +00:00
Angelo Salese
ffbb2d22ec Quick note before I forget, nw 2012-08-24 19:26:05 +00:00
Wilbert Pol
87844d154a (MESS) msx1_cart.xml: Revert previous animal land fix. Changed all ascii mappers to start with bank 0 selected on reset (nw) 2012-08-24 18:42:20 +00:00
Wilbert Pol
389127def9 (MESS) msx1_cart.xml: Fixed animllnd (nw) 2012-08-24 17:29:05 +00:00
Miodrag Milanovic
f03af5d011 Ah, this was needed to be DD drive after all, but change it to support dual side (no whatsnew) 2012-08-24 15:04:59 +00:00
Miodrag Milanovic
3b503b903d added 525hd support into floppy.c and converted ht68k to use new wd17xx core (no whatsnew) 2012-08-24 14:57:05 +00:00
Angelo Salese
7fe7992c72 Some NVRAM hooks 2012-08-24 14:15:49 +00:00
Angelo Salese
8b34eaabbd Hooked up NVRAM loading/saving 2012-08-24 14:07:45 +00:00
Robbbert
1dad614294 Zac_proto: preliminary work begun (nw) 2012-08-24 12:15:15 +00:00
smf-
d3d0443564 am53cf96 is now a device (nw) 2012-08-24 10:45:35 +00:00
smf-
53539d0fba a little tidy up while working on other files (nw) 2012-08-24 10:35:45 +00:00
R. Belmont
b863cf56b5 (MESS) Virtual Boy: correct timer handling, gives proper sound/music. [R. Belmont] 2012-08-24 03:13:51 +00:00
Angelo Salese
35dd8a910d fb flag fixes 2012-08-24 01:46:20 +00:00
Angelo Salese
21dae3682c Commented out code for hooking up the fb 2012-08-24 01:15:13 +00:00
Scott Stone
ebf5205538 Get all the handlers into the device state. From Haze (nw) 2012-08-24 00:40:54 +00:00
Angelo Salese
fce5cd427e (MESS) Fixed H-Bias effects, fixing in particular a video bug with Teleroboxer, nw 2012-08-24 00:13:05 +00:00
Sandro Ronco
d0e0addda5 (MESS) hr16: improved a bit the sound quality. (nw) 2012-08-23 22:36:05 +00:00
Angelo Salese
e5d1b03fae Implemented remaining BSU opcodes in V810 CPU core [Angelo Salese]
(MESS) Improved framebuffer busy / drawing flags for Virtual Boy, golf doesn't crash anymore and nesterfb does a bit more [Angelo Salese]
2012-08-23 22:26:25 +00:00
smf-
e31647d3a5 removed am53cf96_get_device and some other unused GetDevice() trampolines (nw) 2012-08-23 20:47:28 +00:00
Angelo Salese
b26dd6425d Some other King changes 2012-08-23 20:20:56 +00:00
Sandro Ronco
e77bfa6974 (MESS) hr16: SRAM is battery-backed. (nw) 2012-08-23 20:09:35 +00:00
Sandro Ronco
4d79ea8ba6 (MESS) hr16: Added preliminary sound emulation. [Sandro Ronco] 2012-08-23 19:27:48 +00:00
Curt Coder
8555376f43 (MESS) c1541: Added ProLogic-DOS Classic kernal. (nw) 2012-08-23 18:56:52 +00:00
smf-
45e9cc7826 glacial SCSI improvements towards NSCSI and beyond, moved the SCSI id onto the device (nw) 2012-08-23 17:53:10 +00:00
Scott Stone
72fa59293f Started making 32x a device, by creating a device and moving the cpus there. From Haze. (nw) 2012-08-23 16:04:33 +00:00
Angelo Salese
e8f1af1c00 Basic KRAM hook 2012-08-23 15:31:38 +00:00
Robbbert
9b6503ac95 Flicker: added remaining inputs, some notes, sound (of sorts), marked as working. [Robbbert] 2012-08-23 13:32:57 +00:00
Scott Stone
e1cd97408c Continuing new device implementation for SN76496 and clones - mrdo.c, pachifev.c, tp84.c [Osso] 2012-08-23 13:27:45 +00:00
Angelo Salese
7d5c6e5664 Template for King device 2012-08-23 13:24:03 +00:00
Miodrag Milanovic
5f995d42a4 Added proper name of generated mak (no whatsnew) 2012-08-23 12:59:09 +00:00
Miodrag Milanovic
fc915eb2ff Made "make depend" to create files per target, also added "make depend_ume" as new target in case ume is used, since then it becomes complicated (no whatsnew) 2012-08-23 12:56:20 +00:00
Michaël Banaan Ananas
6e6eea1bc9 z80 r16491 for msx.c 2012-08-23 12:12:19 +00:00