blob: 92df7eedabafbd058954aab1ed7c26a115a135f6 (
plain)
1
2
3
4
5
6
7
8
|
import { CPU } from './cpu';
describe('cpu', () => {
it('should set initial value of SP to the last address of internal SRAM', () => {
const cpu = new CPU(new Uint16Array(1024), 0x1000);
expect(cpu.SP).toEqual(0x10ff);
});
});
|