summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/vtech1.c
Commit message (Collapse)AuthorAgeFilesLines
* move mess into mame (nw) Miodrag Milanovic2015-09-301-558/+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.
* rest for Juergen (nw) Miodrag Milanovic2015-05-071-5/+2
|
* Added dummy license lines to each file for MESS (nw) Miodrag Milanovic2015-05-071-0/+2
|
* vtech1: Add software list for some tapes Dirk Best2014-12-131-0/+3
|
* (MESS) vtech1: fixed cassette recording (thanks to ubee for reporting the ↵ Robert2014-11-121-2/+2
| | | | problem)
* (MESS) vz200de marked as not working, no roms dumped. Fixes MT05738. Robbbert2014-10-171-1/+1
|
* static_config removed from speaker (nw) Miodrag Milanovic2014-09-131-7/+1
|
* Cleanups and version bump Miodrag Milanovic2014-07-221-2/+2
|
* vtech1: Add "VZ-200 Enhanced BASIC V1.01" [Chicken Man] Dirk Best2014-06-111-3/+9
|
* vtech1: Use the slot system for I/O and Memory expansion slots. Emulate Dirk Best2014-06-071-626/+128
| | | | the newly dumped RS-232 cartridge. Add support for the WordPro cartridge. Cleanup driver.
* mc6847: converted to use devcb2, delegates and inline configs. nw. Fabio Priuli2014-05-131-56/+20
|
* cassette config moved inline (nw) Miodrag Milanovic2014-05-021-9/+3
|
* Cleanup of image device interfaces (nw) Miodrag Milanovic2014-05-021-7/+0
|
* 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-4/+4
|
* modernized access for legacy floppy, quite straight forward thing (nw) Miodrag Milanovic2014-04-021-1/+1
|
* hsync and fsync are part of mc6847 so devcb2 conversion was needed there not ↵ Miodrag Milanovic2014-03-281-7/+4
| | | | in gime, this fixes coco3 issue (nw)
* second round of clang 3.4 fixes for MESS (nw) Oliver Stöneberg2014-02-201-0/+2
|
* Switched rgb_t to a class, replacing macros with methods. Mappings are Aaron Giles2014-02-191-16/+16
| | | | | | | | | | | | | | | | | | | as follows: MAKE_RGB(r,g,b) == rgb_t(r,g,b) MAKE_ARGB(a,r,g,b) == rgb_t(a,r,g,b) RGB_ALPHA(data) == data.a() RGB_RED(data) == data.r() RGB_GREEN(data) == data.g() RGB_BLUE(data) == data.b() RGB_BLACK == rgb_t::black RGB_WHITE == rgb_t::white Implicit conversions to/from UINT32 are built in as well as simple addition, subtraction, and scaling (with clamping). As a result of being a class, some stricter typing was needed in a few places but overall not too much.
* Centronics WIP using write lines and DEVCB2. Added an output latch and input ↵ smf-2014-02-091-12/+24
| | | | 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]
* Cleanups and version bumpmame0151 Miodrag Milanovic2013-11-051-2/+2
|
* moved centronics into emu/bus (nw) Miodrag Milanovic2013-10-231-1/+1
|
* add license info for some things i worked on, some small cleanups Dirk Best2013-10-171-19/+4
|
* Cleanups and version bumpmame0149u1 Miodrag Milanovic2013-07-231-1/+1
|
* (MESS) vtech1: fixed i/o ports for vz300, laser310 allowing disk to work. ↵ Robbbert2013-07-111-0/+1
| | | | [Robbbert]
* (MESS) Vtech1 : fixed i/o error when reading disks. [Robbbert] Robbbert2013-07-111-2/+3
| | | (out of whatsnew) not tested on writing. Also, it works on VZ200 with 18K of ram, but freezes on vz300.
* modernized speaker device. [Fabio Priuli] Fabio Priuli2013-06-041-1/+1
|
* made BEEP and RAM devices initialize in constructor of driver classes (nw) Miodrag Milanovic2013-04-231-9/+11
|
* cleanup (nw) Miodrag Milanovic2013-04-191-5/+4
|
* SNAPSHOT_LOAD and QUICKLOAD_LOAD made members, still need to cleanup (nw) Miodrag Milanovic2013-04-191-2/+3
|
* (MESS) cassette cleanup (nw) Miodrag Milanovic2013-04-171-3/+3
|
* various cpu lookup cleanup (nw) Miodrag Milanovic2013-04-151-1/+1
|
* speaker tag lookup removal, also no need to use universal tag, since easier ↵ Miodrag Milanovic2013-04-121-2/+2
| | | | now to follow (nw)
* changed machine().device("maincpu") with m_maincpu in mess tree part (nw) Miodrag Milanovic2013-04-101-3/+5
|
* run latest srcclean on rest of files (nw) Miodrag Milanovic2013-03-191-2/+0
|
* Some mess modernization (nw) Miodrag Milanovic2013-02-181-20/+20
|
* output of new srcclean changes that are relatively small [smf] smf-2013-01-111-2/+0
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-65/+65
|
* Replaced all device_t's with actual device classes. Regression test ↵ Curt Coder2012-11-261-5/+2
| | | | recommended. (nw)
* vtech1: fixed shrg (no whatsnew) Miodrag Milanovic2012-10-151-2/+1
|
* Replace some *_DEVICE_HANDLER with _MEMBER calls (no whatsnew) Miodrag Milanovic2012-09-261-14/+16
|
* change from device->machine() to space.machine() in device handlers in order ↵ Miodrag Milanovic2012-09-211-3/+3
| | | | to make next changes easier (no whatsnew)
* Since nobody checks for NULLs anyway, make Aaron Giles2012-09-191-7/+7
| | | | | | | | | | | | 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-11/+11
| | | | | | | 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]
* 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/+1107