summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/replicator.c
Commit message (Collapse)AuthorAgeFilesLines
* move mess into mame (nw) Miodrag Milanovic2015-09-301-751/+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.
* Cleanups and version bumpmame0162 Miodrag Milanovic2015-05-271-78/+78
|
* Adding several official firmware image versions for the Makerbot Replicator ↵ Felipe Corrêa da Silva Sanches2015-05-141-6/+78
| | | | 1 3d printer.
* Start adding owners to files in MESS and updated license for PeT (nw) Miodrag Milanovic2015-05-081-1/+1
|
* removed static config from avr8. nw. Fabio Priuli2014-09-211-6/+1
|
* fixed most of the -Wunreachable-code-break and -Wunreachable-code-return ↵ Oliver Stöneberg2014-09-081-11/+0
| | | | warnings of clang 3.5 when compiling MESS (nw)
* (MESS) New skeleton driver: Scott Stone2014-06-201-5/+1
| | | | | | | --------------------------- Intelbras TI630 telephone [Felipe Sanches] Fixed current/prior submissions for proper license attribution (nw)
* Cleanups and version bumpmame0153 Miodrag Milanovic2014-04-071-159/+159
|
* update to official header like in his other contribution (nw) Miodrag Milanovic2014-04-041-0/+2
|
* fix so srcclean doesn't make in invalid (nw) Miodrag Milanovic2014-04-041-2/+2
|
* 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
|
* Huge update, palette is now device (nw) Miodrag Milanovic2014-02-271-5/+6
| | | note: Aaron please give more descriptive text for release log I have no more strength :)
* Switched rgb_t to a class, replacing macros with methods. Mappings are Aaron Giles2014-02-191-2/+2
| | | | | | | | | | | | | | | | | | | 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.
* 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.
* (MESS) cons <--> comp Robbbert2014-01-261-2/+2
|
* -AVR8 cpu changes [Felipe Sanches] Miodrag Milanovic2014-01-021-17/+30
| | | | | | | | | | | | - timers wip - Add TIMSK* reads - Refactor timer_tick calls - Remove all redundant register init statements. We simply set all 0x200 registers to zero. - debugging timers - better syntax for disassembly of RJMP destination address - use register names in disasm of CBI, SBI, SBIC, SBIS instructions - use register bit names in disasm of instructions SBI, SBIS, SBIC, CBI - wip on avr8 EEPROM read/write support
* -AVR8 improvements: [Felipe Sanches] Miodrag Milanovic2013-12-301-0/+682
- Added ELPM instructions - Added fuse bits macros - Added reset logic to decide initial program counter based on fuse bits configuration - Added initial support for ATMEGA1280 and ATMEGA2560 - Use register names in the disassembly of IN and OUT instructions (MESS) New driver : Replicator 1 [Felipe Sanches] (MESS) Replicator 1 driver: [Felipe Sanches] - status: no sound / not working - general skeleton. - basic memory mapping - shift-register interfacing from PORTC writes to the LCD device - avr8 fuses configuration