added a space where I was missing one in one test message

This commit is contained in:
Preston Skupinski 2011-05-07 18:56:20 -04:00
parent 41d1b2f17c
commit cc815b4b5f
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ function test_cmp() {
"bit should not be set");
equals(cpu.p.z, 0, "When comparing 0xff01 and 0xfeff the zero(z) bit "+
"should not be set (0xff01 != 0xfeff)");
equals(cpu.p.c, 1, "When comparing 0xff01 and 0xfeff the carry(c) bit"+
equals(cpu.p.c, 1, "When comparing 0xff01 and 0xfeff the carry(c) bit "+
"should be set (0xff01 >= 0xfeff)");
});
}