From 3cda4057ac0bbdecdf549eb0850fd4c6dd89bef7 Mon Sep 17 00:00:00 2001 From: Darkress Date: Tue, 9 May 2023 02:27:40 +0200 Subject: [PATCH] Some commenting --- CommandDecoder.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/CommandDecoder.java b/CommandDecoder.java index f9a8d48..1c17782 100644 --- a/CommandDecoder.java +++ b/CommandDecoder.java @@ -118,27 +118,28 @@ public class CommandDecoder if ((input | 0x0060) == 0x0060) { - //NOP(); + //nop(); } if (input == 0x0064) { - //Clear Watchdog Timer + //clrwdt(); } if (input == 0x0009) { - //RETFIE + //retfie(); } if (input == 0x0008) { - //RETURN + //return(); + //This is the function name. Do not mistake this for a normal return! } if (input == 0x0063) { - //SLEEP + //sleep(); } } }