Some commenting

This commit is contained in:
Darkress
2023-05-09 02:27:40 +02:00
committed by DarkressX
parent f575fc81c9
commit 3cda4057ac

View File

@@ -118,27 +118,28 @@ public class CommandDecoder
if ((input | 0x0060) == 0x0060) if ((input | 0x0060) == 0x0060)
{ {
//NOP(); //nop();
} }
if (input == 0x0064) if (input == 0x0064)
{ {
//Clear Watchdog Timer //clrwdt();
} }
if (input == 0x0009) if (input == 0x0009)
{ {
//RETFIE //retfie();
} }
if (input == 0x0008) if (input == 0x0008)
{ {
//RETURN //return();
//This is the function name. Do not mistake this for a normal return!
} }
if (input == 0x0063) if (input == 0x0063)
{ {
//SLEEP //sleep();
} }
} }
} }