Skip to content

Commit 3838b0b

Browse files
committed
Little Tweaks
1 parent 9d2ea24 commit 3838b0b

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/bin/
2+
.project
3+
.classpath

src/DisplayPanel.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ public void paintComponent(Graphics g) {
3030

3131
//Title
3232
g.setFont(new Font("Calibri Bold", 50, 50));
33-
g.drawString("Ben Eater 6502 Emulator by Dylan Speiser", 40, 50);
33+
g.drawString("Ben Eater 6502 Emulator", 40, 50);
3434

3535
//Mouse Position
36-
g.setFont(new Font("Arial",10,10));
37-
g.drawString(mousePos.toString(), 10, 10);
36+
// g.setFont(new Font("Arial",10,10));
37+
// g.drawString(mousePos.toString(), 10, 10);
3838

3939
//PAGE INDICATORS
4040
g.setFont(new Font("Courier New Bold",20,20));

src/EaterEmulator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class EaterEmulator extends JFrame implements ActionListener {
1515
public DisplayPanel GraphicsPanel = new DisplayPanel();
1616

1717
public Timer clock;
18-
public static boolean haltFlag = false;
18+
public static boolean haltFlag = true;
1919

2020
//Emulator Things
2121
public static RAM ram = new RAM();

0 commit comments

Comments
 (0)