summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/jag_blitter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/jag_blitter.h')
-rw-r--r--src/mame/video/jag_blitter.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/video/jag_blitter.h b/src/mame/video/jag_blitter.h
index 313f98f2d22..c16daf226eb 100644
--- a/src/mame/video/jag_blitter.h
+++ b/src/mame/video/jag_blitter.h
@@ -2,7 +2,7 @@
// copyright-holders:Angelo Salese
/***************************************************************************
- Atari Jaguar "Blitter" device
+ Atari Jaguar "Blitter" device
***************************************************************************/
@@ -26,7 +26,7 @@
// ======================> jag_blitter_device
class jag_blitter_device : public device_t,
- public device_memory_interface
+ public device_memory_interface
{
public:
// construction/destruction
@@ -46,7 +46,7 @@ protected:
const address_space_config m_space_config;
-// address_space *m_host_space;
+// address_space *m_host_space;
private:
void regs_map(address_map &map);
@@ -58,22 +58,22 @@ private:
void command_w(offs_t offset, u32 data, u32 mem_mask = ~0);
void count_outer_w(offs_t offset, u16 data, u16 mem_mask = ~0);
void count_inner_w(offs_t offset, u16 data, u16 mem_mask = ~0);
-
+
// timer setups
emu_timer *m_command_timer;
inline void command_start();
inline void command_run();
inline void command_done();
-
+
// functional switches
-
+
typedef void (jag_blitter_device::*op_func)(void);
-
+
static const op_func upda_ops[8];
void op_nop();
void op_unemulated();
void op_upda1();
-
+
u32 m_command_latch;
bool m_status_idle;
u32 m_count_lines, m_count_pixels;
@@ -81,7 +81,7 @@ private:
struct {
u32 base;
s16 xstep, ystep;
-
+
u32 ptr; /**< Current pixel address */
} m_a1;
};