Chameleon

Chameleon Commit Details

Date:2011-06-25 19:14:32 (12 years 9 months ago)
Author:Evan Lojewski
Commit:1074
Parents: 1073
Message:Added c++ entrypoint files for module disk + fs modules
Changes:
A/branches/rewrite/i386/modules/FileSystem/FileSystem.cpp
A/branches/rewrite/i386/modules/BiosDisk/BiosDisk.cpp
M/branches/rewrite/i386/modules/Makefile

File differences

branches/rewrite/i386/modules/FileSystem/FileSystem.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
* Copyright (c) 2011 Evan Lojewski. All rights reserved.
*
*/
#include <cstdlib>
#include <iostream>
#include <modules>
extern "C"
{
void FileSystem_start();
}
void FileSystem_start()
{
}
branches/rewrite/i386/modules/BiosDisk/BiosDisk.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
* Copyright (c) 2011 Evan Lojewski. All rights reserved.
*
*/
#include <cstdlib>
#include <iostream>
#include <modules>
extern "C"
{
void BiosDisk_start();
}
void BiosDisk_start()
{
}
branches/rewrite/i386/modules/Makefile
1111
1212
1313
14
14
1515
1616
1717
include ${SRCROOT}/Make.rules
# The order of building is important.
SUBDIRS = klibc uClibcxx Resolution HelloWorld
SUBDIRS = klibc uClibcxx Resolution HelloWorld BiosDisk FileSystem
CFLAGS= -O3 $(MORECPP) -arch i386 -g -static

Archive Download the corresponding diff file

Revision: 1074