summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/imagedev/printer.c
Commit message (Collapse)AuthorAgeFilesLines
* Added some for Nathan and some more for Nicola (nw) Miodrag Milanovic2015-05-111-2/+2
|
* Added dummy license headers for EMU section (nw) Miodrag Milanovic2015-05-071-0/+2
|
* Added serial printer, renamed centronics printer to match. Standardised the ↵ smf-2014-04-161-12/+4
| | | | configuration of rs232 devices. All serial devices are now connected using an rs232 port. [smf]
* printer_image_device: converted to devcb2 (nw) Ivan Vangelista2014-04-111-17/+7
|
* changed rest of devices (except cpu cores) to have shortname and sourcefile (nw) Miodrag Milanovic2013-06-211-1/+1
|
* output of new srcclean changes that are relatively small [smf] smf-2013-01-111-1/+0
|
* Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-5/+4
|
* Fix for i286 preventing error 104 on ibm5170 [Carl] Miodrag Milanovic2012-05-121-0/+8
|
* Cleanups and version bumpmame0142u6 Angelo Salese2011-06-191-1/+1
|
* Converted printer image device to modern (no whatsnew) Miodrag Milanovic2011-06-141-61/+65
|
* Collapsed device_config and device_t into one class. Updated all Aaron Giles2011-04-271-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | existing modern devices and the legacy wrappers to work in this environment. This in general greatly simplifies writing a modern device. [Aaron Giles] General notes: * some more cleanup probably needs to happen behind this change, but I needed to get it in before the next device modernization or import from MESS :) * new template function device_creator which automatically defines the static function that creates the device; use this instead of creating a static_alloc_device_config function * added device_stop() method which is called at around the time the previous device_t's destructor was called; if you auto_free anything, do it here because the machine is gone when the destructor is called * changed the static_set_* calls to pass a device_t & instead of a device_config * * for many devices, the static config structure member names over- lapped the device's names for devcb_* functions; in these cases the members in the interface were renamed to have a _cb suffix * changed the driver_enumerator to only cache 100 machine_configs because caching them all took a ton of memory; fortunately this implementation detail is completely hidden behind the driver_enumerator interface * got rid of the macros for creating derived classes; doing it manually is now clean enough that it isn't worth hiding the details in a macro
* Moved image devices implementation and related UI functions to emu section ↵ Miodrag Milanovic2011-01-051-0/+116
from MESS [Miodrag Milanovic]