add NOOP to instructions

This commit is contained in:
Ole Morud
2022-08-22 13:54:29 +02:00
parent 612bc2fbb9
commit 587b7c6cc4

View File

@@ -6,7 +6,15 @@ export interface Instruction {
searchtags: string
}
// first element should be the NOOP instruction
const instructions: Instruction[] = [
{
symbol: " ",
name: "NOOP",
ascii: " ",
description: "do nothing and move program counter further",
searchtags: "nothing blank empty noop"
},
{
symbol: "0⃣",
name: "0",