Reorganize code to new virtual folder

This commit is contained in:
d0k3 2016-11-14 20:08:14 +01:00
parent 168582f395
commit a99aa0790f
6 changed files with 7 additions and 7 deletions

View File

@ -21,9 +21,9 @@ ifeq ($(MODE),safe)
export TARGET := SafeMode9
endif
BUILD := build
SOURCES := source source/fatfs source/nand source/abstraction
SOURCES := source source/fatfs source/nand source/virtual source/abstraction
DATA := data
INCLUDES := source source/font source/fatfs source/nand
INCLUDES := source source/font source/fatfs source/nand source/virtual
#---------------------------------------------------------------------------------
# options for code generation

View File

@ -24,7 +24,7 @@ typedef enum {
#define DRV_MEMORY (1<<8)
#define DRV_ALIAS (1<<9)
#define DRV_SEARCH (1<<10)
#define DRV_STDFAT (1<<11) // standard FAT drive without limitiations
#define DRV_STDFAT (1<<11) // standard FAT drive without limitations
// permission types
#define PERM_SDCARD (1<<0)