Skip to content

Commit c9d8e55

Browse files
committed
fixed instruction fetch from BRAM, updated qnice toolchain & docs
1 parent 5ff0924 commit c9d8e55

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+7579
-894
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ impact.xsl
77
impact_impact.xwbt
88
qasm2rom
99
register_file.sym
10+
qnice
11+
qasm

doc/nice_can.pdf

181 KB
Binary file not shown.

doc/qnice_intro.pdf

182 KB
Binary file not shown.

emulator/ide_simulation.c

Lines changed: 721 additions & 0 deletions
Large diffs are not rendered by default.

emulator/ide_simulation.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#ifndef TRUE
2+
# define TRUE 1
3+
# define FALSE !TRUE
4+
#endif
5+
6+
7+
void writeIDEDeviceRegister(unsigned int address, unsigned int value);
8+
unsigned int readIDEDeviceRegister(unsigned int address);
9+
void initializeIDEDevice();
10+
11+
//For testing purposes only - will be removed at end of development
12+
void testMe();
13+

emulator/make.bash

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
cc qnice.c ide_simulation.c uart_2681.c -o qnice

0 commit comments

Comments
 (0)