From 587b7c6cc4ba73f681b73b72a53facaff94d9497 Mon Sep 17 00:00:00 2001 From: Ole Morud Date: Mon, 22 Aug 2022 13:54:29 +0200 Subject: [PATCH] add NOOP to instructions --- src/Instructions.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Instructions.tsx b/src/Instructions.tsx index d2870f8..57abff7 100644 --- a/src/Instructions.tsx +++ b/src/Instructions.tsx @@ -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",