summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/jubilee.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename *.c -> *.cpp in our source (nw) Miodrag Milanovic2015-11-081-710/+0
|
* change flags from GAME_ to MACHINE_ David Haywood2015-07-291-1/+1
| | | | this better fits the drivers from MESS (which have always illogically used the GAME_ flags despite not being games) and also fits fine with arcade machines.
* Update for Roberto Fresca and Grull Osgo (nw) Miodrag Milanovic2015-05-271-1/+1
|
* Added known authors to licenses tags (nw) Miodrag Milanovic2015-05-091-1/+1
|
* Added dummy license headers for MAME part (nw) Miodrag Milanovic2015-05-071-0/+2
|
* Fix various typos and spelling mistakes Zoë Blade2015-04-111-1/+1
| | | | | | | | | | | | | | I'm purposefully leaving /src/emu/bus/cbmiec/c1541.c's kernal.bin as it is, as this particular spelling mistake was originally made by Robert Russell, therefore is canon. See http://en.wikipedia.org/wiki/KERNAL for details. I'm also leaving /src/emu/machine/nscsi_bus.c's RECIEVE as I don't want to break anything, but it's worth someone looking into. I renamed some variables in /src/mame/drivers/sfbonus.c, /src/mame/video/tia.c and /src/mame/video/tia.h, so if anyone wants to verify I didn't break anything, that would be nice.
* mc6845: converted to devcb2, delegates and inline configs. nw. Fabio Priuli2014-05-011-21/+3
| | | | | | | | | while at it, cleaned up the args of the mc6845 delegates as well (no need to pass back and forth pieces of the driver class, now that delegates belong to it as well) even if I tested the changes extensively, I might have missed something among the 177 source files using this, so please report any regressions you see :)
* TMS99xx users (arcade machines) adapted to use devcb2. (nw) Michael Zapf2014-03-211-59/+50
|
* Checkpoint 2: Alex W. Jackson2014-03-151-1/+1
| | | | | | gfxdecode devices must now be assigned a palette in MCFG. Added palette devices to several MESS drivers and devices to comply with this requirement. This palette is assigned as a default to the gfx_elements created by the device (but still not used for drawing yet, except in the UI graphics viewer) Tilemaps now have a pointer to a palette device and use that palette for rgb32 drawing, rather than the palette of the screen or bitmap they are drawing to (since rgb32 screens don't have palettes now). When a tilemap is created, it takes its palette from the gfxdecode device it was created with, but you can change a tilemap's palette device with set_palette() at any time (doing this does not mark the tilemap dirty, since all tilemaps use indexed bitmaps internally)
* Made palette settings for screen explicit and mandatory for ind16 mode (nw) Miodrag Milanovic2014-03-141-0/+1
|
* Double-Up Poker (Jubilee) improvements [Roberto Fresca] Roberto Fresca2014-03-111-13/+210
| | | | | | Added partial lamps support (some are missing), and a workaround for discrete sounds trigger offsets. Also a zillion of technical notes about findings.
* You now specify a gfxdecode device once when you create a tilemap, rather ↵ Alex W. Jackson2014-03-101-2/+2
| | | | than each time in the tile info callback. Updated all drivers accordingly [Alex Jackson]
* Huge update, palette is now device (nw) Miodrag Milanovic2014-02-271-5/+1
| | | note: Aaron please give more descriptive text for release log I have no more strength :)
* jubilee.c: fix visarea assert; change CRTC clock divider to more realistic ↵ Alex W. Jackson2014-02-201-16/+17
| | | | value (nw)
* Added more findings, technical and game notes, changed Roberto Fresca2014-02-201-8/+48
| | | | | some input names and changed the game description to match what the cab says.
* Jubilee Double-Up Poker updates. [Roberto Fresca] Roberto Fresca2014-02-191-56/+53
| | | | | | | | | | | - Added a default clean NVRAM. - Found and implemented the credits input. The game is now working!. Still no sound. New games added or promoted from NOT_WORKING status --------------------------------------------------- Jubilee Double-Up Poker [Roberto Fresca]
* Jubilee Poker: Fixed palette to 8 colors. Roberto Fresca2014-02-191-17/+18
|
* More Jubilee Poker updates. [Roberto Fresca] Roberto Fresca2014-02-181-12/+14
| | | | | | | - Hooked CRTC properly. - Adjusted the screen size and visible area according to CRTC values. - Adjusted the screen pos 8 pixels, to get a bit centered. - Added technical notes.
* Extra service input found... Roberto Fresca2014-02-181-1/+1
|
* Jubilee Double-Up Poker: Fixed the NVRAM size. Roberto Fresca2014-02-181-65/+54
| | | | | | Video and working RAM are both halves of the same device (TC5517AP-2, tied to a battery). Also added technical notes. [Roberto Fresca]
* Jubilee Double-Up Poker (TMS9980) updates... [Roberto Fresca] Roberto Fresca2014-02-181-184/+66
| | | | | | | - Demuxed the input system. - Hooked an cleaned all inputs, except the coin in (missing). - Added NVRAM support. - Added technical notes.
* moved optional_device<gfxdecode_device> to specific drivers state classes (nw) Miodrag Milanovic2014-02-171-1/+3
|
* Jubilee Double-Up Poker (TMS9980) updates... [Roberto Fresca] Roberto Fresca2014-02-171-87/+220
| | | | | | | | | | | | | - Corrected the crystal value and derivate clocks via #DEFINE. - Improved memory map. - Hooked the CRT controller, but the init sequence seems incomplete. - Created the accurate graphics banks. - Found and mapped the video RAM. - Hooked the ATTR RAM. - Assigned the correct graphics banks to the proper drawn tiles. - Find and mapped an input port. - Started a preliminary workaround to demux the input port. - Added technical notes.
* Created gfxdecode_device instead of using machine fixed gfxdecode [Miodrag ↵ Miodrag Milanovic2014-02-161-2/+2
| | | | | | | | | | Milanovic] Updated all devices and drivers for using it. out of whatsnew: Note that it is made to work same as before, in some cases it can be more logic to move gfxdevice into subdevice itself then to keep it in main driver.
* added screen visarea adjustment to mc6845 config interface Michaël Banaan Ananas2014-01-041-0/+1
|
* jubilee.c: Switched to new TMS9980 implementation and tried to bring the Michael Zapf2013-11-041-24/+29
| | | | driver in better shape. [Michael Zapf]
* fix compile Jonathan Gevaryahu2013-11-031-9/+0
|
* Added compile switch for legacy / new CPU implementation.(nw) Michael Zapf2013-11-031-0/+25
|
* Using new TMS9980/95 implementation. [Michael Zapf] Michael Zapf2013-10-191-5/+13
|
* Various updates regarding commented out code, forgotten during past device ↵ Ivan Vangelista2013-09-071-2/+2
| | | | modernizations. More to come. (nw)
* Fix long-standing architectural wart: the priority bitmap is no longer owned Aaron Giles2013-07-261-1/+1
| | | | | | | | | | | | | | | | | | by the tilemap system, and no longer exists globally in the machine. Instead it is allocated per-screen for all systems. This has several side-effects: 1. Previously, the pdrawgfx* functions were already changed to take the priority bitmap as a parameter. Now all other hand-crafted functions that mess with the priority bitmap generally must do so as well, and have been updated. 2. Calls to the tilemap system now need to provide a screen_device. This is not just for the priority_bitmap, but also for screen flipping, which previously always assumed the "primary screen" when doing flipping calculations. 3. All devices that implemented tilemap-like functionality have been updated to follow the same pattern, since they largely tend to call through to the core tilemap system at some point.
* Created new device_video_interface. Right now its sole purpose is to Aaron Giles2013-07-241-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | house a screen tag and to find the screen at startup, providing an m_screen object that can be used. One nice feature is that if there is only one screen and no screen has been specified, it will auto configure to that screen. This removes the need to explicitly specify a screen in the configuration for a large chunk of drivers (though doing so never hurts). A new macro MCFG_VIDEO_SET_SCREEN is provided, though devices are encouraged to define their own that maps there so it is obvious which device is being targeted. The device_video_interface's validation function will error if an invalid screen is specified or if no screen is provided but there are multiple screens present. Updated all devices that currently had an m_screen in them to use the device_video_interface instead. This also has the nice benefit of flagging video-related devices for categorization purposes. It also means all these devices inherit the same screen-finding behaviors. For devices that had interfaces that specified a screen tag, those have been removed and all existing structs updated. Added an optional_device<screen_device> m_screen to the base driver_device. If you name your screen "screen" (as most drivers do), you will have free access to your screen this way. Future updates include: * Updating all devices referencing machine.primary_screen to use the device_video_interface instead * Updating all drivers referencing machine.primary_screen to use the m_screen instead * Removing machine.primary_screen entirely
* added m_maincpu where missing in driver classes that are placed in drivers (nw) Miodrag Milanovic2013-04-101-1/+3
|
* unified formating of state class constructors, no functional change (nw) Miodrag Milanovic2013-04-101-1/+1
|
* Cleanups and version bumpmame0148u1 Miodrag Milanovic2013-02-111-1/+1
|
* Added a preliminary boolean flag to MC6845 interface structure: "show border ↵ Angelo Salese2013-01-141-1/+2
| | | | | | | | area". If true, it will show the whole video area including border + blanking areas. [Angelo Salese] Bulk replaced const mc6845_interface -> MC6845_INTERFACE, nw (MESS) SMC-777: enabled to show the border area in MC6845 interface, changed various video related function accordingly [Angelo Salese]
* output of new srcclean changes that are relatively small [smf] smf-2013-01-111-1/+0
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-19/+19
|
* INTERRUPT_GEN -> INTERRUPT_GEN_MEMBER (no whatsnew) Miodrag Milanovic2012-09-181-3/+4
|
* Modernized screen update calls (no whatsnew) Miodrag Milanovic2012-09-171-4/+4
|
* Massive change, MACHINE_START\RESET, VIDEO_START\RESET and PALETTE_INIT ↵ Miodrag Milanovic2012-09-131-6/+5
| | | | changed to be members of state classes (no whatsnew)
* Clear out remaining global inlines in diexec.h. Aaron Giles2012-09-121-1/+1
|
* TILE/TILEMAP modernization part 1 (no whatsnew) Miodrag Milanovic2012-09-061-5/+5
|
* Replaced standard mappers with an enumeration that maps internally Aaron Giles2012-09-051-1/+1
| | | | | | to the original functions. The only change is to all-caps since these are constants, e.g., tilemap_scan_rows -> TILEMAP_SCAN_ROWS.
* All driver inits are now member of state classes. Miodrag Milanovic2012-08-101-1/+1
| | | | | Added DECLARE_DRIVER_INIT macro to define it H file, and DRIVER_INIT_MEMBER for member declaration in C files Updated all drivers accordingly (no whatsnew)
* Updated GAME and GAMEL with class name per machine used, for future ↵ Miodrag Milanovic2012-08-041-1/+1
| | | | DRIVER_INIT change (no whatsnew)
* New TMS9900 and TMS9995 implementation with proper control line handling Michael Zapf2012-06-071-2/+2
| | | | | | and wait state generation. Previous implementation has been renamed to *l.{c,h} and drivers point to the old implementation until they are adapted to the new version. [Michael Zapf]
* Removed unnecessary target() calls from shared_ptr references. Aaron Giles2012-04-111-2/+2
| | | | | | | | | | | | You still need target() if you want to cast to another pointer size. This should be rare, and in fact fixing these pointed out a few cases where code was missing BYTE/WORD/DWORD_XOR_* macros. I flagged these with: // ERROR: This cast is NOT endian-safe without the use of BYTE/WORD/DWORD_XOR_* macros! For future fixing.
* Added target() on proper places (no whatsnew) Miodrag Milanovic2012-04-111-2/+2
|
* AM_BASE and AM_BASE_SIZE to AM_SHARE by request from Aaron (no whatsnew) Miodrag Milanovic2012-04-111-3/+4
|