summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/es5510
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-07-23 07:18:56 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-07-23 07:18:56 +0000
commit14629cbcb42fb824f71120ca93fcb7d53a360390 (patch)
tree4d8b9459d6e98a677927c934c5322c328819de3a /src/emu/cpu/es5510
parentd3f32a1ba70fe3edf112059b6319fbfe218fe8d6 (diff)
Cleanups and version bumpmame0149u1
Diffstat (limited to 'src/emu/cpu/es5510')
-rw-r--r--src/emu/cpu/es5510/es5510.c14
-rw-r--r--src/emu/cpu/es5510/es5510.h2
2 files changed, 8 insertions, 8 deletions
diff --git a/src/emu/cpu/es5510/es5510.c b/src/emu/cpu/es5510/es5510.c
index d101ead70d9..bfe0e4dfef9 100644
--- a/src/emu/cpu/es5510/es5510.c
+++ b/src/emu/cpu/es5510/es5510.c
@@ -559,7 +559,7 @@ void es5510_device::execute_set_input(int linenum, int state) {
void es5510_device::list_program(void(p)(const char *, ...)) {
LOG(("ES5501: Starting!\n"));
-
+
UINT8 addr;
char buf[1024];
for (addr = 0; addr < 0xa0; addr++) {
@@ -802,14 +802,14 @@ void es5510_device::run_once()
{
// turn HALT off
set_HALT(false);
-
- // run for one instruction
+
+ // run for one instruction
icount = 1;
execute_run();
-
- // turn HALT on again
+
+ // turn HALT on again
set_HALT(true);
-
+
// run ESP to the end of its program, a few instructions at a time
while (state != STATE_HALTED) {
icount = 1;
@@ -898,7 +898,7 @@ void es5510_device::write_to_dol(INT32 value) {
}
void es5510_device::alu_operation_end() {
- // Handle the END instruction separately
+ // Handle the END instruction separately
LOG(("ES5510: END\n"));
// sample the HALT line
if (halt_asserted) {
diff --git a/src/emu/cpu/es5510/es5510.h b/src/emu/cpu/es5510/es5510.h
index 8120d204081..20fec32cc11 100644
--- a/src/emu/cpu/es5510/es5510.h
+++ b/src/emu/cpu/es5510/es5510.h
@@ -104,7 +104,7 @@ public:
ram_cycle_t cycle; // cycle type
};
- // direct access to the 'HALT' pin - not just through the
+ // direct access to the 'HALT' pin - not just through the
void set_HALT(bool halt) { halt_asserted = halt; }
bool get_HALT() { return halt_asserted; }