24 lines
345 B
C++
24 lines
345 B
C++
// vfs.c
|
|
// Author: Josh Holtrop
|
|
// Date: 03/11/04
|
|
// Modified: 03/16/04
|
|
|
|
#include "hos_defines.h"
|
|
#include "vfs.h"
|
|
//#include "fs/vfat.h"
|
|
//#include "block/rd.h"
|
|
//#include "block/loop.h"
|
|
//#include "lang/LinkedList.h"
|
|
#include "lang/string.h"
|
|
#include "kio.h"
|
|
|
|
void vfs_init()
|
|
{
|
|
string test1 = "hi there.";
|
|
printf("%s", test1.data());
|
|
}
|
|
|
|
|
|
|
|
|