Skip to content

Commit

Permalink
fixed instruction fetch from BRAM, updated qnice toolchain & docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sy2002 committed Aug 21, 2015
1 parent 5ff0924 commit c9d8e55
Show file tree
Hide file tree
Showing 41 changed files with 7,579 additions and 894 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ impact.xsl
impact_impact.xwbt
qasm2rom
register_file.sym
qnice
qasm
Binary file added doc/nice_can.pdf
Binary file not shown.
Binary file added doc/qnice_intro.pdf
Binary file not shown.
721 changes: 721 additions & 0 deletions emulator/ide_simulation.c

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions emulator/ide_simulation.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#ifndef TRUE
# define TRUE 1
# define FALSE !TRUE
#endif


void writeIDEDeviceRegister(unsigned int address, unsigned int value);
unsigned int readIDEDeviceRegister(unsigned int address);
void initializeIDEDevice();

//For testing purposes only - will be removed at end of development
void testMe();

2 changes: 2 additions & 0 deletions emulator/make.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
cc qnice.c ide_simulation.c uart_2681.c -o qnice
Loading

0 comments on commit c9d8e55

Please sign in to comment.