-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #110 from POETSII/dt10-polite-sw-sim
POLite software simulation
- Loading branch information
Showing
12 changed files
with
903 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
**/build/* | ||
*.o | ||
*.elf | ||
*.a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#include "POLite.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#ifndef POLiteSWSim_POLite_h | ||
#define POLiteSWSim_POLite_h | ||
|
||
// Everything in here is in namespace POLiteSWSim | ||
#include "POLite/PGraph.h" | ||
|
||
// We then explicitly being it out into the global namespace | ||
|
||
using POLiteSWSim::PGraph; | ||
using POLiteSWSim::PDevice; | ||
using POLiteSWSim::HostLink; | ||
using POLiteSWSim::PMessage; | ||
|
||
using POLiteSWSim::None; | ||
using POLiteSWSim::No; | ||
using POLiteSWSim::HostPin; | ||
using POLiteSWSim::PPin; | ||
using POLiteSWSim::Pin; | ||
using POLiteSWSim::PDeviceId; | ||
|
||
using namespace POLiteSWSim::config; | ||
|
||
// This is defined in tinsel-interface.h, and used in some apps. | ||
// Defined empty here for compatibility, but would be nice to get rid of it | ||
#define INLINE | ||
|
||
#endif |
Oops, something went wrong.