Previous 199869 Revisions Next

r32923 Friday 24th October, 2014 at 12:11:17 UTC by Oliver Stöneberg
ignore *.psess and *.vsp in root (nw)

these are Visual Studio Performance Analysis output files
[/trunk].gitignore
[src/emu/bus/isa]isa_cards.c svga_trident.c svga_trident.h

trunk/.gitignore
r241434r241435
4242srcclean
4343testkeys
4444unidasm
45/*.psess
46/*.vsp
trunk/src/emu/bus/isa/isa_cards.c
r241434r241435
1919   SLOT_INTERFACE("aga_pc200", ISA8_AGA_PC200)
2020   SLOT_INTERFACE("ega", ISA8_EGA)
2121   SLOT_INTERFACE("svga_et4k", ISA8_SVGA_ET4K)
22   SLOT_INTERFACE("tgui9680",ISA8_SVGA_TGUI9680)
2223   SLOT_INTERFACE("com", ISA8_COM)
2324   SLOT_INTERFACE("fdc", ISA8_FDC_SUPERIO)
2425   SLOT_INTERFACE("fdc_xt", ISA8_FDC_XT)
r241434r241435
5758   SLOT_INTERFACE("vga", ISA8_VGA)
5859   SLOT_INTERFACE("svga_et4k", ISA8_SVGA_ET4K)
5960   SLOT_INTERFACE("svga_dm",ISA8_SVGA_CIRRUS)
61   SLOT_INTERFACE("tgui9680",ISA8_SVGA_TGUI9680)
6062   SLOT_INTERFACE("com", ISA8_COM)
6163   SLOT_INTERFACE("comat", ISA8_COM_AT)
6264   SLOT_INTERFACE("fdc", ISA8_FDC_AT)
r241434r241435
9193   SLOT_INTERFACE("dms3d2kp", ISA16_DMS3D2KPRO)
9294   SLOT_INTERFACE("gfxultra", ISA16_VGA_GFXULTRA)
9395   SLOT_INTERFACE("gfxultrap", ISA16_SVGA_GFXULTRAPRO)
94   SLOT_INTERFACE("tgui9680",ISA16_SVGA_TGUI9680)
9596   SLOT_INTERFACE("3c505", ISA16_3C505)
9697   SLOT_INTERFACE("mach64", ISA16_SVGA_MACH64)
9798   SLOT_INTERFACE("sb16_lle", ISA16_SB16)
trunk/src/emu/bus/isa/svga_trident.c
r241434r241435
1919//  GLOBAL VARIABLES
2020//**************************************************************************
2121
22const device_type ISA16_SVGA_TGUI9680 = &device_creator<isa16_svga_tgui9680_device>;
22const device_type ISA8_SVGA_TGUI9680 = &device_creator<isa8_svga_tgui9680_device>;
2323
2424
2525static MACHINE_CONFIG_FRAGMENT( vga_trident )
r241434r241435
3737//  machine configurations
3838//-------------------------------------------------
3939
40machine_config_constructor isa16_svga_tgui9680_device::device_mconfig_additions() const
40machine_config_constructor isa8_svga_tgui9680_device::device_mconfig_additions() const
4141{
4242   return MACHINE_CONFIG_NAME( vga_trident );
4343}
r241434r241435
4646//  rom_region - device-specific ROM region
4747//-------------------------------------------------
4848
49const rom_entry *isa16_svga_tgui9680_device::device_rom_region() const
49const rom_entry *isa8_svga_tgui9680_device::device_rom_region() const
5050{
5151   return ROM_NAME( tgui9680 );
5252}
r241434r241435
5959//  isa8_vga_device - constructor
6060//-------------------------------------------------
6161
62isa16_svga_tgui9680_device::isa16_svga_tgui9680_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
63      device_t(mconfig, ISA16_SVGA_TGUI9680, "Trident TGUI9680 Graphics Card (BIOS X5.5 (02) 02/13/96)", tag, owner, clock, "tgui9680", __FILE__),
64      device_isa16_card_interface(mconfig, *this)
62isa8_svga_tgui9680_device::isa8_svga_tgui9680_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
63      device_t(mconfig, ISA8_SVGA_TGUI9680, "Trident TGUI9680 Graphics Card (BIOS X5.5 (02) 02/13/96)", tag, owner, clock, "tgui9680", __FILE__),
64      device_isa8_card_interface(mconfig, *this)
6565{
6666}
6767
6868//-------------------------------------------------
6969//  device_start - device-specific startup
7070//-------------------------------------------------
71READ8_MEMBER(isa16_svga_tgui9680_device::input_port_0_r ) { return 0xff; } //return space.machine().root_device().ioport("IN0")->read(); }
71READ8_MEMBER(isa8_svga_tgui9680_device::input_port_0_r ) { return 0xff; } //return space.machine().root_device().ioport("IN0")->read(); }
7272
73void isa16_svga_tgui9680_device::device_start()
73void isa8_svga_tgui9680_device::device_start()
7474{
7575   set_isa_device();
7676
r241434r241435
100100//  device_reset - device-specific reset
101101//-------------------------------------------------
102102
103void isa16_svga_tgui9680_device::device_reset()
103void isa8_svga_tgui9680_device::device_reset()
104104{
105105}
trunk/src/emu/bus/isa/svga_trident.h
r241434r241435
1616//  TYPE DEFINITIONS
1717//**************************************************************************
1818
19// ======================> isa16_vga_device
19// ======================> isa8_vga_device
2020
21class isa16_svga_tgui9680_device :
21class isa8_svga_tgui9680_device :
2222      public device_t,
23      public device_isa16_card_interface
23      public device_isa8_card_interface
2424{
2525public:
2626      // construction/destruction
27      isa16_svga_tgui9680_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
27      isa8_svga_tgui9680_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
2828
2929      // optional information overrides
3030      virtual machine_config_constructor device_mconfig_additions() const;
r241434r241435
4141
4242
4343// device type definition
44extern const device_type ISA16_SVGA_TGUI9680;
44extern const device_type ISA8_SVGA_TGUI9680;
4545
4646
4747#endif /* SVGA_TRIDENT_H_ */


Previous 199869 Revisions Next


© 1997-2024 The MAME Team