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"