From a5d6df90beecae5eeedb66114ebb224442766a7c Mon Sep 17 00:00:00 2001 From: j8takagi Date: Mon, 4 Apr 2011 23:04:23 +0900 Subject: [PATCH] =?utf8?q?=E3=82=A8=E3=83=A9=E3=83=BC=E3=83=A1=E3=83=83?= =?utf8?q?=E3=82=BB=E3=83=BC=E3=82=B8=E3=81=AE=E5=BE=AE=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/exec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/exec.c b/src/exec.c index aaef27b..744f27c 100644 --- a/src/exec.c +++ b/src/exec.c @@ -15,7 +15,7 @@ static CERR cerr_exec[] = { { 204, "OP in word #1 - not command code" }, { 205, "r/r1 in word #1 - not GR" }, { 206, "x/r2 in word #1 - not GR" }, - { 207, "Address in word #2 - out of memory" }, + { 207, "address in word #2 - out of memory" }, { 208, "SVC input - memory overflow" }, { 209, "SVC output - memory overflow" }, }; @@ -194,7 +194,7 @@ WORD val_adrx(WORD adr, WORD oprx) { WORD a; if((a = adrx(adr, oprx)) >= sys->memsize) { - setcerr(207, pr2str(sys->cpu->pr + 1)); /* Address in word #2 - out of memory */ + setcerr(207, pr2str(sys->cpu->pr + 1)); /* address in word #2 - out of memory */ return 0x0; } return sys->memory[a]; -- 2.18.0