Skip to content

Commit

Permalink
Removed viewInstruction references
Browse files Browse the repository at this point in the history
  • Loading branch information
Kurumiiw committed Dec 5, 2024
1 parent dcb9890 commit 06bfa45
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/emulator/emulator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import FastForwardIcon from '@mui/icons-material/FastForward';
import PauseIcon from '@mui/icons-material/Pause';
import StopIcon from '@mui/icons-material/Stop';
import MoveDownIcon from '@mui/icons-material/MoveDown';
import ViewInstruction from "@/components/viewInstruction/viewInstruction";

enum instruction {
NOP,
Expand Down Expand Up @@ -946,7 +945,6 @@ export default function Emulator() {
<Grid size={4}>
<Paper className={`${styles.paper} ${styles.visualizer}`}>
<Typography variant="subtitle1" sx={{marginLeft: "5px"}}>BBC state</Typography>
<ViewInstruction memoryContent={"8"} />
<Card variant="outlined" className={styles.registers}>
<Typography variant="h6" sx={{marginBottom: "10px"}}>Registers</Typography>
<TextField className={styles.register} label="PC" sx={{width: "65pt"}} value={showHexValues? "0x" + ('000' + reg_PC.toString(16)).slice(-4) : reg_PC} color="primary" focused />
Expand Down

0 comments on commit 06bfa45

Please sign in to comment.