Skip to content

Commit c342246

Browse files
committed
test(cpu): improve test name
1 parent 214d566 commit c342246

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cpu/cpu.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { CPU } from './cpu';
22

33
describe('cpu', () => {
4-
it('should set initial value of SP to the last address of internal SRAM', () => {
4+
it('should set initial value of SP to the last byte of internal SRAM', () => {
55
const cpu = new CPU(new Uint16Array(1024), 0x1000);
66
expect(cpu.SP).toEqual(0x10ff);
77
});

0 commit comments

Comments
 (0)