forked from SMT-M/INP2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.xml
34 lines (27 loc) · 1017 Bytes
/
project.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<project outputprefix="inp">
<!-- Project description -->
<name>Procesor BrainFucku</name>
<author>Frantisek Kolacek</author>
<authoremail>[email protected]</authoremail>
<description>8-bitovy procesor (BrainFuck interpreter)</description>
<!-- MCU part -->
<mcu>
<file>main.c</file>
</mcu>
<!-- FPGA part -->
<fpga ngcpath="fpga/ngc">
<include>fpga/ctrls/spi/package.xml</include>
<include>fpga/ctrls/keyboard/package.xml</include>
<file>lcdctrl.vhd</file>
<file>kbctrl.vhd</file>
<file>rom.vhd</file>
<file>ram.vhd</file>
<file>cpu.vhd</file>
<file>top.vhd</file>
<!-- soubory pro simulaci -->
<file context="sim">fpga/sim/tb.vhd</file>
<file context="sim">fpga/models/keyboard/keyboard.vhd</file>
<file context="sim">fpga/models/lcd/lcd.vhd</file>
</fpga>
</project>