Skip to content

Commit 8356b86

Browse files
committed
rename files
1 parent 501127f commit 8356b86

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed
File renamed without changes.

ConsoleIO.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Addressable } from "./addressable";
1+
import { Addressable } from "./Addressable";
22
import * as readline from "readline";
33

44
export class ConsoleIO implements Addressable {

memorymap.ts renamed to MemoryMap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Addressable } from "./addressable";
1+
import { Addressable } from "./Addressable";
22

33
interface MemoryPart {
44
start: number;

processor.ts renamed to Processor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Addressable } from "./addressable";
1+
import { Addressable } from "./Addressable";
22

33
const PC = 0;
44
const SP = 0;

ram.ts renamed to Ram.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Addressable } from "./addressable";
1+
import { Addressable } from "./Addressable";
22

33
export class Ram implements Addressable {
44
private data: Uint8Array;

rom.ts renamed to Rom.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Addressable } from "./addressable";
1+
import { Addressable } from "./Addressable";
22

33
export class Rom implements Addressable {
44
constructor(private data: Uint8Array) {}

index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { ConsoleIO } from "./ConsoleIO";
2-
import { MemoryMap } from "./memorymap";
3-
import { Processor } from "./processor";
4-
import { Ram } from "./ram";
5-
import { Rom } from "./rom";
2+
import { MemoryMap } from "./MemoryMap";
3+
import { Processor } from "./Processor";
4+
import { Ram } from "./Ram";
5+
import { Rom } from "./Rom";
66

77
const romData = new Uint8Array(0x8000);
88

0 commit comments

Comments
 (0)