We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 214d566 commit c342246Copy full SHA for c342246
src/cpu/cpu.spec.ts
@@ -1,7 +1,7 @@
1
import { CPU } from './cpu';
2
3
describe('cpu', () => {
4
- it('should set initial value of SP to the last address of internal SRAM', () => {
+ it('should set initial value of SP to the last byte of internal SRAM', () => {
5
const cpu = new CPU(new Uint16Array(1024), 0x1000);
6
expect(cpu.SP).toEqual(0x10ff);
7
});
0 commit comments