aboutsummaryrefslogtreecommitdiff
path: root/src/cpu.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu.spec.ts')
-rw-r--r--src/cpu.spec.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/cpu.spec.ts b/src/cpu.spec.ts
deleted file mode 100644
index 92df7ee..0000000
--- a/src/cpu.spec.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-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);
- });
-});