Previous 199869 Revisions Next

r17909 Saturday 15th September, 2012 at 22:16:53 UTC by R. Belmont
Fixes so MESS on PowerPC OS X builds and works again.  MAME is still a lost cause. [R. Belmont]
[src/emu/machine]netlist.h
[src/emu/video]pc_vga.c

trunk/src/emu/video/pc_vga.c
r17908r17909
40144014   bool draw = ibm8514.wait_vector_draw;
40154015   UINT8 count = ibm8514.wait_vector_count;
40164016   UINT32 offset;
4017   UINT8 data_size;
4017   UINT8 data_size = 0;
40184018   int x;
40194019
40204020   if(s3.bus_size == 0)  // 8-bit
trunk/src/emu/machine/netlist.h
r17908r17909
108108      netlist.parse((char *)downcast<netlist_t &>(netlist.netlist()).machine().root_device().memregion(_name)->base());      \
109109
110110#if defined(__GNUC__) && (__GNUC__ >= 3)
111#if !defined(__ppc__) && !defined (__PPC__) && !defined(__ppc64__) && !defined(__PPC64__)
111112#define ATTR_ALIGN __attribute__ ((aligned(128)))
112113#else
113114#define ATTR_ALIGN
114115#endif
116#else
117#define ATTR_ALIGN
118#endif
115119
116120//============================================================
117121//  MACROS / netlist devices
r17908r17909
11251129
11261130   // construction/destruction
11271131   netlist_mame_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
1132    virtual ~netlist_mame_device() {}
11281133
11291134   static void static_set_constructor(device_t &device, void (*setup_func)(netlist_setup_t &));
11301135
r17908r17909
11681173{
11691174public:
11701175   virtual bool OnDeviceStart() = 0;
1176    virtual ~on_device_start() {}
11711177};
11721178
11731179// device finder template

Previous 199869 Revisions Next


© 1997-2024 The MAME Team