+++ some code preparations for the hardware interface

This commit is contained in:
masterm 2007-02-03 17:26:02 +00:00
parent e5096e87c6
commit 5843f35538
4 changed files with 32 additions and 1 deletions

View file

@ -202,6 +202,24 @@
</Filter>
</Filter>
</Filter>
<Filter
Name="Hardware Interface"
Filter="">
<Filter
Name="Source Files"
Filter="">
<File
RelativePath=".\atmega128io.cpp">
</File>
</Filter>
<Filter
Name="Header Files"
Filter="">
<File
RelativePath=".\atmega128io.h">
</File>
</Filter>
</Filter>
</Files>
<Globals>
</Globals>

View file

@ -1,9 +1,12 @@
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Concept", "Concept\Concept.vcproj", "{556125BE-937F-4A2B-89C7-B086575BE0F0}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Concept", "Concept.vcproj", "{556125BE-937F-4A2B-89C7-B086575BE0F0}"
ProjectSection(ProjectDependencies) = postProject
EndProjectSection
EndProject
Global
GlobalSection(DPCodeReviewSolutionGUID) = preSolution
DPCodeReviewSolutionGUID = {00000000-0000-0000-0000-000000000000}
EndGlobalSection
GlobalSection(SolutionConfiguration) = preSolution
Debug = Debug
Release = Release

View file

@ -0,0 +1 @@
#include "atmega128io.h"

View file

@ -0,0 +1,9 @@
#ifndef _ATMEGA128IO_H
#define _ATMEGA128IO_H
namespace hardware
{
};
#endif