summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/pegasus.c
Commit message (Collapse)AuthorAgeFilesLines
* move mess into mame (nw) Miodrag Milanovic2015-09-301-581/+0
|
* change flags from GAME_ to MACHINE_ David Haywood2015-07-291-2/+2
| | | | 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.
* did change on Robbberts behalf (nw) Miodrag Milanovic2015-05-071-1/+1
|
* Cleanups and version bumpmame0161 Miodrag Milanovic2015-04-291-1/+1
|
* moved all to std::string (nw) Miodrag Milanovic2015-04-221-2/+2
|
* Replace dynamic_array with std::vector [O. Galibert] Olivier Galibert2015-04-141-1/+1
|
* (MESS) pegasus : fixed decryption of all roms in the software list. Robbbert2015-04-121-17/+25
| | | | | All items can be used via the fullpath. Xbasic, forth and pascal now work. Loading via the software list however is still broken for multipart roms.
* cstr() - > c_str() as preparation for move to std::string (nw) Miodrag Milanovic2015-04-111-1/+1
|
* (MESS) pegasus : modernised code (nw) Robbbert2015-04-111-57/+53
|
* Cleanups and version bumpmame0155 Miodrag Milanovic2014-10-151-8/+8
|
* (MESS) fixed a small bug in the decryption of multi-ROM pegasus programs. Fabio Priuli2014-09-251-7/+6
| | | many thanks amilo3438 for testing! nw.
* (MESS) consolidated generic socket / cartslot a bit more: removed Fabio Priuli2014-09-221-11/+11
| | | | | | redundant cart_mounted() function since exists() from image device already provides the required service, and added capability to specify endianness of the rom region (otherwise not detectable from fullpath). nw.
* another round of generic carts / sockets. nw. Fabio Priuli2014-09-201-75/+101
|
* cassette config moved inline (nw) Miodrag Milanovic2014-05-021-10/+2
|
* Cleanup of image device interfaces (nw) Miodrag Milanovic2014-05-021-1/+0
|
* 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
|
* Moved core template container classes up from emutempl.h to coretmpl.h: Aaron Giles2014-03-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [Aaron Giles] * these classes now no longer take a resource_pool; everything is managed globally -- this means that objects added to lists must be allocated with global_alloc * added new auto_pointer<> template which wraps a pointer and auto-frees it upon destruction; it also defaults to NULL so it doesn't need to be explicitly initialized * moved tagged_list template to tagmap.h Redo of the low-level memory tracking system: [Aaron Giles] * moved low-level tracking out of emu\emualloc into lib\util\corealloc so it can be shared among all components and used by core libraries * global_alloc and friends no longer use a resource pool to track allocations; turns out this was a wholly redundant system that wasted a lot of memory * removed global_resource_pool entirely * added global_free_array to delete arrays allocated with global_alloc_array * added tracking of object versus array allocation; we will now error if you use global_free on an array, or global_free_array on an object Added new utility helper const_string_pool which can be used to efficiently accumulate strings that are not intended to be modified. Used by updated makelist and software list code. [Aaron Giles] Updated png2bdc and makelist tools to not leak memory and use more modern techniques (no more MAX_DRIVERS in makelist, for example). [Aaron Giles] Deprecated auto_strdup and removed all uses by way of caller-managed astrings and the software list rewrite. [Aaron Giles] Rewrote software list management: [Aaron Giles] * removed the notion of a software_list that is separate from a software_list_device; they are one and the same now * moved several functions into device_image_interface since they really didn't belong in the core software list class * lots of simplification as a result of the above changes Additional notes (no whatsnew): Moved definition of FPTR to osdcomm.h. Some changes happened in the OSD code to fix issues, especially regarding freeing arrays. SDL folks may need to fix up some of these. The following devices still are using tokens and should be modernized (I found them because they kept their token as void * and tried to delete it, which you can't): namco_52xx_device (mame/audio/namco52.c) namco_54xx_device (mame/audio/namco54.c) namco_06xx_device (mame/machine/namco06.c) namco_50xx_device (mame/machine/namco50.c) namco_51xx_device (mame/machine/namco51.c) namco_53xx_device (mame/machine/namco53.c) voodoo_device (emu/video/voodoo.c) mos6581_device (emu/sound/mos6581.c) aica_device (emu/sound/aica.c) scsp_device (emu/sound/scsp.c) dmadac_sound_device (emu/sound/dmadac.c) s3c2440_device (emu/machine/s3c2440.c) wd1770_device (emu/machine/wd17xx.c) latch8_device (emu/machine/latch8.c) duart68681_device (emu/machine/68681.c) s3c2400_device (emu/machine/s3c2400.c) s3c2410_device (emu/machine/s3c2410.c) strataflash_device (mess/machine/strata.c) hd63450_device (mess/machine/hd63450.c) tap_990_device (mess/machine/ti99/990_tap.c) omti8621_device (mess/machine/omti8621.c) vdt911_device (mess/video/911_vdt.c) apollo_graphics_15i (mess/video/apollo.c) asr733_device (mess/video/733_asr.c)
* Huge update, palette is now device (nw) Miodrag Milanovic2014-02-271-2/+1
| | | note: Aaron please give more descriptive text for release log I have no more strength :)
* Created gfxdecode_device instead of using machine fixed gfxdecode [Miodrag ↵ Miodrag Milanovic2014-02-161-1/+1
| | | | | | | | | | 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.
* remove 6821 from the MCFG PIA macros, not all PIA's are 6821's (nw) smf-2014-01-071-11/+11
|
* fixed swapped cb1 & ca2 read callbacks during conversion (nw) smf-2014-01-061-1/+1
|
* Converted PIA6821 to DEVCB2 [smf] smf-2014-01-061-36/+15
|
* (MESS) Added copyright info - feel free to update as needed Robbbert2013-10-161-0/+2
|
* modernized generic palette initializations (nw) Oliver Stöneberg2013-07-151-1/+1
|
* (MESS) cassette cleanup (nw) Miodrag Milanovic2013-04-171-3/+3
|
* various cpu lookup cleanup (nw) Miodrag Milanovic2013-04-151-2/+1
|
* Removal of machine().root_device() where appropriate (nw) Miodrag Milanovic2013-04-141-6/+6
|
* changed machine().device("maincpu") with m_maincpu in mess tree part (nw) Miodrag Milanovic2013-04-101-1/+1
|
* Some mess modernization (nw) Miodrag Milanovic2013-02-181-8/+9
|
* Started moving DEVICE_IMAGE_ functions into driver_device classes. (nw) Wilbert Pol2013-02-051-10/+15
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-27/+27
|
* Replaced all device_t's with actual device classes. Regression test ↵ Curt Coder2012-11-261-2/+2
| | | | recommended. (nw)
* TIMER_CALLBACK_DEVICE_MEMBER modernization part 2 (no whatsnew) Miodrag Milanovic2012-09-251-3/+4
|
* removed local macros since macros with same name but different syntax will ↵ Miodrag Milanovic2012-09-121-8/+4
| | | | be used in general (no whatsnew)
* Clear out remaining global inlines in diexec.h. Aaron Giles2012-09-121-1/+1
|
* Closeout on old macros. Retired cputag_set_input_line Aaron Giles2012-09-121-1/+1
| | | | | | | and cputag_set_input_line_and_vector, replacing them with machine.device("tag")->execute().set_input_line[_and_vector]. [Aaron Giles]
* In device_state_interface, rename state() to state_int() Aaron Giles2012-09-111-1/+1
| | | | | | | | | | | | | | | and set_state() to set_state_int() for consistency. Update all callers. Also add set_pc() helper and updated all callers to use that instead of set_state_int(STATE_GENPC) [Aaron Giles] Added device_t::state() method to get the state interface. Added redundant device_state_interface::state() method to catch redundant use of it. [Aaron Giles] Removed cpu_get_reg() and cpu_set_reg() macros in favor of using the above methods. [Aaron Giles]
* Merge of MESS sources (no whatsnew) Miodrag Milanovic2012-08-211-0/+578