From 5d5fef9afdea389c20f94d2ed4ea424c681a3e22 Mon Sep 17 00:00:00 2001 From: Stephen Toth Date: Thu, 28 Jun 2018 12:37:07 -0400 Subject: [PATCH] Renamed default commands to FshCommands --- includes/FshCmd.asm | 2 +- includes/FshCommands.inc | 5 +++++ includes/{commands => FshCommands}/CLS.asm | 0 includes/{commands => FshCommands}/COPY.asm | 0 includes/{commands => FshCommands}/EXIT.asm | 0 includes/{commands => FshCommands}/SET.asm | 0 includes/{commands => FshCommands}/VARS.asm | 0 includes/commands.inc | 5 ----- 8 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 includes/FshCommands.inc rename includes/{commands => FshCommands}/CLS.asm (100%) rename includes/{commands => FshCommands}/COPY.asm (100%) rename includes/{commands => FshCommands}/EXIT.asm (100%) rename includes/{commands => FshCommands}/SET.asm (100%) rename includes/{commands => FshCommands}/VARS.asm (100%) delete mode 100644 includes/commands.inc diff --git a/includes/FshCmd.asm b/includes/FshCmd.asm index 670ccfb..39c2936 100644 --- a/includes/FshCmd.asm +++ b/includes/FshCmd.asm @@ -109,4 +109,4 @@ fshcmdfillLoop: pop hl ret -#include "includes/commands.inc" +#include "includes/FshCommands.inc" diff --git a/includes/FshCommands.inc b/includes/FshCommands.inc new file mode 100644 index 0000000..72458f9 --- /dev/null +++ b/includes/FshCommands.inc @@ -0,0 +1,5 @@ +#include "includes/FshCommands/EXIT.asm" +#include "includes/FshCommands/SET.asm" +#include "includes/FshCommands/COPY.asm" +#include "includes/FshCommands/CLS.asm" +#include "includes/FshCommands/VARS.asm" diff --git a/includes/commands/CLS.asm b/includes/FshCommands/CLS.asm similarity index 100% rename from includes/commands/CLS.asm rename to includes/FshCommands/CLS.asm diff --git a/includes/commands/COPY.asm b/includes/FshCommands/COPY.asm similarity index 100% rename from includes/commands/COPY.asm rename to includes/FshCommands/COPY.asm diff --git a/includes/commands/EXIT.asm b/includes/FshCommands/EXIT.asm similarity index 100% rename from includes/commands/EXIT.asm rename to includes/FshCommands/EXIT.asm diff --git a/includes/commands/SET.asm b/includes/FshCommands/SET.asm similarity index 100% rename from includes/commands/SET.asm rename to includes/FshCommands/SET.asm diff --git a/includes/commands/VARS.asm b/includes/FshCommands/VARS.asm similarity index 100% rename from includes/commands/VARS.asm rename to includes/FshCommands/VARS.asm diff --git a/includes/commands.inc b/includes/commands.inc deleted file mode 100644 index 6687b9e..0000000 --- a/includes/commands.inc +++ /dev/null @@ -1,5 +0,0 @@ -#include "includes/commands/EXIT.asm" -#include "includes/commands/SET.asm" -#include "includes/commands/COPY.asm" -#include "includes/commands/CLS.asm" -#include "includes/commands/VARS.asm"