blob: a68f754fc9fa15d4ec0d925217fbb9460f83a701 (
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 byte of internal SRAM', () => {
const cpu = new CPU(new Uint16Array(1024), 0x1000);
expect(cpu.SP).toEqual(0x10ff);
});
});
|