summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/thomson.c
Commit message (Collapse)AuthorAgeFilesLines
* move mess into mame (nw) Miodrag Milanovic2015-09-301-4794/+0
|
* thomson.c: reduce tagmap lookups (nw) Wilbert Pol2015-08-021-247/+212
|
* Don't use 64 bit print for things that make so sense as 64 bit. (nw) Cowering2015-06-191-1/+1
|
* update license for Peter Trauner and Antoine Mine (nw) Miodrag Milanovic2015-05-111-2/+2
|
* Added dummy license lines to each file for MESS (nw) Miodrag Milanovic2015-05-071-0/+2
|
* moved all to std::string (nw) Miodrag Milanovic2015-04-221-4/+4
|
* cstr() - > c_str() as preparation for move to std::string (nw) Miodrag Milanovic2015-04-111-2/+2
|
* Use the same list of centronics devices everywhere (except the Amstrad CPC), ↵ smf-2014-10-281-1/+1
| | | | the list has been renamed as they aren't all printers. [smf]
* compilation fix for VS14 CTP4 (nw) smf-2014-10-181-1/+1
|
* Cleanups and version bumpmame0155 Miodrag Milanovic2014-10-151-4/+4
|
* If #includes are not in source, code should not exist in source. (nw) Scott Stone2014-09-281-198/+0
|
* (MESS)thomson - fixes for a non-standard video mode and adding a new one ↵ Miodrag Milanovic2014-09-251-1/+4
| | | | [Antoine Mine]
* (MESS)thomson : improve accuracy of the colors [Antoine Mine] Miodrag Milanovic2014-09-061-1/+6
|
* Moved eminline and related files into /src/osd since it's system related (nw) Miodrag Milanovic2014-04-161-1/+1
| | | | | | | | Moved delegates into /src/lib/util to enable usage of delegates in other project parts Moved mame_printf_* calls into /src/osd/osdcore.c and renamed them to osd_printf_* Changed mess.mak to display compilation of ymmu100.ppm nicely
* Added serial printer, renamed centronics printer to match. Standardised the ↵ smf-2014-04-161-1/+1
| | | | configuration of rs232 devices. All serial devices are now connected using an rs232 port. [smf]
* Cleanups and version bumpmame0153 Miodrag Milanovic2014-04-071-23/+23
|
* mc6846_device: converted to devcb2 (nw) Ivan Vangelista2014-03-261-69/+0
|
* Fix for Thomson MO6 banking, now more faithful to the hardware [Antoine Mine] Miodrag Milanovic2014-03-251-31/+55
|
* mea8000: devcb2. (nw) Curt Coder2014-03-191-4/+0
|
* MESS part of ATTR_PRINTF review (nw) Oliver Stöneberg2014-02-251-1/+1
|
* Removed diserial connect(). Converted thomson, mc1502 & wangpc to use DEVCB2 ↵ smf-2014-02-241-75/+59
| | | | instead. [smf]
* Rewritten 6850 based on datasheet using external CLOCK & removed MIDI clock ↵ smf-2014-02-211-19/+27
| | | | hacks. Standardised COM8116 DEVCB2 callbacks. GUS gf1_device device derives from acia6850_device to gain access to the tx & rx irq state, rather than exposing it with a public method. [smf]
* Centronics WIP using write lines and DEVCB2. Added an output latch and input ↵ smf-2014-02-091-35/+31
| | | | buffer device to allow configuration in MCFG. Renamed centronics device "printer" to "image". FM-7 parallel port joystick works again. Added support for using PC LPT control lines as inputs (not tested). c64 geocable now just passes individual lines through, changed the strobe line to what is documented online (not tested). Converted MSX & exidy sorcerer parallel port DAC to use covox device instead of using a configuration switch (not tested). Sorcerer parallel port is more like the commodore user port, so should be converted to it's own slot where one option is a centronics card. [smf]
* Converted PIA6821 to DEVCB2 [smf] smf-2014-01-061-257/+23
|
* replaced read rx/cts/dcd callbacks in ACIA6850 write write handlers, which ↵ smf-2013-12-221-10/+1
| | | | allows multiple chips to be connected together without using glue methods. [smf]
* diserial: Remove defines, cleanup clocks/timers, add sync support [O. Galibert] Olivier Galibert2013-11-181-8/+8
|
* moved centronics into emu/bus (nw) Miodrag Milanovic2013-10-231-1/+1
|
* Modernized mc6846 device.(nw) Ivan Vangelista2013-10-191-10/+10
|
* small MACHINE_RESET cleanup Oliver Stöneberg2013-08-051-1/+1
|
* Fixes for building MESS with Visual Studio 2013 preview [smf] smf-2013-07-051-4/+4
|
* Fix device duplicated name/descriptions (nw) Miodrag Milanovic2013-06-211-1/+1
|
* changed rest of devices (except cpu cores) to have shortname and sourcefile (nw) Miodrag Milanovic2013-06-211-1/+1
|
* (MESS) modernized MEA 8000 sound device. [Fabio Priuli] Fabio Priuli2013-06-021-2/+2
|
* (MESS) to8/to8d: forgot 2 other banks; only now the driver displays 512K ↵ Wilbert Pol2013-05-221-2/+6
| | | | again when choosing 256K ram :( (nw)
* (MESS) to8/to8d: Fixed support for 256K RAM; should hopefully fix MT#5160. (nw) Wilbert Pol2013-05-221-1/+9
|
* save state cleanup, converted state_save_register_global* into ↵ Miodrag Milanovic2013-05-081-12/+12
| | | | save_item/save_pointer (nw)
* midtunit modernization and some cleanup (nw) Miodrag Milanovic2013-05-081-4/+4
|
* updated not used code (nw) Miodrag Milanovic2013-04-181-4/+4
|
* moving some static functions in driver state for MESS drivers plus some ↵ Miodrag Milanovic2013-04-181-5/+5
| | | | other modernization (nw)
* Removal of machine().root_device() where appropriate (nw) Miodrag Milanovic2013-04-141-1/+1
|
* (MESS) changed logging to use machine().describe_context(). (nw) smf-2013-04-131-13/+13
|
* Cleanups and version bumpmame0148u2 Miodrag Milanovic2013-03-191-5/+5
|
* (MESS) thomson.c: Started moving a few things into the driver data. (nw) Wilbert Pol2013-02-241-1920/+1751
|
* (MESS) fixed thomson.c softlist cart loading (nw) Oliver Stöneberg2013-02-091-10/+38
|
* Started moving DEVICE_IMAGE_ functions into driver_device classes. (nw) Wilbert Pol2013-02-051-2/+2
|
* output of new srcclean changes that are relatively small [smf] smf-2013-01-111-16/+0
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-283/+283
|
* change from device->machine() to space.machine() in device handlers in order ↵ Miodrag Milanovic2012-09-211-87/+87
| | | | to make next changes easier (no whatsnew)
* Since nobody checks for NULLs anyway, make Aaron Giles2012-09-191-12/+12
| | | | | | | | | | | | device_memory_interface::space() assert against NULL and return a reference, and pushed references throughout all address space usage in the system. Added a has_space() method to check for those rare case when it is ambiguous. [Aaron Giles] Also reinstated the generic space and added fatal error handlers if anyone tries to actually read/write from it.
* Memory handler normalization, part 2. Change legacy Aaron Giles2012-09-171-193/+193
| | | | | | | read/write handlers to take an address_space & instead of an address_space *. Also update pretty much all other functions to take a reference where appropriate. [Aaron Giles]