first commit
This commit is contained in:
commit
0fa7144084
8 changed files with 144 additions and 0 deletions
11
npc/.gitignore
vendored
Normal file
11
npc/.gitignore
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
*.*
|
||||
*
|
||||
!*/
|
||||
!Makefile
|
||||
!*.mk
|
||||
!*.[cSh]
|
||||
!*.v
|
||||
!*.cc
|
||||
!*.cpp
|
||||
!.gitignore
|
||||
!README.md
|
8
npc/Makefile
Normal file
8
npc/Makefile
Normal file
|
@ -0,0 +1,8 @@
|
|||
all:
|
||||
@echo "Write this Makefile by your self."
|
||||
|
||||
sim:
|
||||
$(call git_commit, "sim RTL") # DO NOT REMOVE THIS LINE!!!
|
||||
@echo "Write this Makefile by your self."
|
||||
|
||||
include ../Makefile
|
6
npc/csrc/main.cpp
Normal file
6
npc/csrc/main.cpp
Normal file
|
@ -0,0 +1,6 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
printf("Hello, ysyx!\n");
|
||||
return 0;
|
||||
}
|
2
npc/vsrc/example.v
Normal file
2
npc/vsrc/example.v
Normal file
|
@ -0,0 +1,2 @@
|
|||
module example();
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue