Move filesystem code into its own directory

Step one into cleaning up the codebase a little bit.
This commit is contained in:
Byron Lathi
2022-04-16 21:43:26 -05:00
parent c8ce675d2b
commit c5f1b64cba
7 changed files with 5 additions and 6 deletions

View File

@@ -2,8 +2,8 @@
#include <conio.h>
#include <string.h>
#include "fat.h"
#include "o65.h"
#include "filesystem/fat.h"
#include "filesystem/o65.h"
void exec(char* filename) {
o65_header_t* header;