X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fexec.c;h=744f27c69894a596b44db648337afecadc1fc507;hb=refs%2Ftags%2Fv0.1p34;hp=aaef27be5dfb100c56e20b5dd8789f9d253f9d10;hpb=4027d87a62ceedf7c387cc078506f14ac9d958e3;p=YACASL2.git 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];