summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/ucom4/ucom4.cpp
Commit message (Expand)AuthorAgeFilesLines
* Interrupt callback rationalization AJR2023-03-111-2/+2
* - Removed device_timer, device_timer_id, et al in favor of direct callback me... MooglyGuy2022-06-041-1/+1
* cpu: remove obsolete debugger.h include from some of my files hap2022-04-021-1/+0
* b5000: added easy opcodes hap2022-03-181-11/+6
* added MM76 disassembler and preliminary PPS-4/1 MCU core [hap] hap2021-02-261-5/+6
* hmcs40: simplify internal timer (nw) hap2020-04-231-4/+0
* ucom4: remove global enum (nw) hap2019-06-161-16/+16
* stopthief: added buttons to layout (nw) hap2019-04-171-5/+5
* maps: Finish devices/cpu (nw) Olivier Galibert2018-04-201-14/+18
* Reshuffle some stuff: Vas Crabb2018-03-281-2/+2
* don't pass so many naked pointers around (nw) Vas Crabb2018-03-251-2/+2
* API change: Memory maps are now methods of the owner class [O. Galibert] Olivier Galibert2018-02-121-9/+9
* dvdisasm: Overhaul [O. Galibert] Olivier Galibert2017-11-261-4/+3
* make device_memory_interface slightly less of a special case, use a typedef t... Vas Crabb2017-07-101-2/+2
* dimemory: Lift the cap on the number of address spaces per device [O. Galibert] Olivier Galibert2017-07-031-0/+8
* Move static data out of devices into the device types. This is a significant... Vas Crabb2017-05-141-15/+42
* ucom4: fix efball old regression (nw) hap2017-04-201-1/+1
* ucom4: added D546 (nw) hap2017-04-191-8/+13
* Self-registering devices prep: Vas Crabb2017-02-271-4/+4
* Remove emu.h from headers (nw) Olivier Galibert2017-02-111-0/+1
* change some of my files to use abbreviated integer types (nw) hap2017-01-161-10/+10
* Changed disassembler infrastructure to not use char buffers internally Nathan Woods2016-11-201-2/+2
* NOTICE (TYPE NAME CONSOLIDATION) Miodrag Milanovic2016-10-221-10/+10
* Make sure all cpu's export STATE_GENPCBASE and use safe_pcbase() for everythi... smf-2016-09-281-1/+2
* Revert "Make sure all cpu's export STATE_GENPCBASE and use safe_pcbase() for ... Lord-Nightmare2016-09-271-2/+1
* Make sure all cpu's export STATE_GENPCBASE and use safe_pcbase() for everythi... smf-2016-09-271-1/+2
* Replace strformat, strprintf and strcatprintf with type-safe steam_format and... Vas Crabb2016-02-281-1/+1
* reverting: Miodrag Milanovic2016-01-201-8/+8
* tags are now strings (nw) Miodrag Milanovic2016-01-161-8/+8
* Revert "remove const (nw)" Miodrag Milanovic2016-01-131-1/+1
* remove const (nw) Miodrag Milanovic2016-01-111-1/+1
* Return std::string objects by value rather than pass by reference AJR2016-01-101-1/+1
* Rename *.c -> *.cpp in our source (nw) Miodrag Milanovic2015-11-081-0/+484
finished_write(); void next_sector(); void security_error(); void read_first_sector(); void soft_reset() override; uint32_t m_cur_lba; uint16_t m_block_count; uint16_t m_sectors_until_int; uint8_t m_master_password_enable; uint8_t m_user_password_enable; const uint8_t * m_master_password; const uint8_t * m_user_password; // DMA data transfer time for 1 sector attotime m_dma_transfer_time; }; // ======================> ide_hdd_device class ide_hdd_device : public ata_mass_storage_device { public: // construction/destruction ide_hdd_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); protected: ide_hdd_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); // device-level overrides virtual void device_start() override; virtual void device_reset() override; // optional information overrides virtual void device_add_mconfig(machine_config &config) override; virtual int read_sector(uint32_t lba, void *buffer) override { return !m_disk ? 0 : hard_disk_read(m_disk, lba, buffer); } virtual int write_sector(uint32_t lba, const void *buffer) override { return !m_disk ? 0 : hard_disk_write(m_disk, lba, buffer); } virtual uint8_t calculate_status() override; chd_file *m_handle; hard_disk_file *m_disk; enum { TID_NULL = TID_BUSY + 1 }; private: required_device<harddisk_image_device> m_image; emu_timer * m_last_status_timer; }; // device type definition DECLARE_DEVICE_TYPE(IDE_HARDDISK, ide_hdd_device) #endif // MAME_MACHINE_IDEHD_H