├── .gitignore ├── Makefile ├── README.md ├── init.sh └── npc ├── .gitignore ├── Makefile ├── csrc └── main.cpp └── vsrc └── example.v /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCPU/ysyx-workbench/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCPU/ysyx-workbench/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCPU/ysyx-workbench/HEAD/README.md -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCPU/ysyx-workbench/HEAD/init.sh -------------------------------------------------------------------------------- /npc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCPU/ysyx-workbench/HEAD/npc/.gitignore -------------------------------------------------------------------------------- /npc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCPU/ysyx-workbench/HEAD/npc/Makefile -------------------------------------------------------------------------------- /npc/csrc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCPU/ysyx-workbench/HEAD/npc/csrc/main.cpp -------------------------------------------------------------------------------- /npc/vsrc/example.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSCPU/ysyx-workbench/HEAD/npc/vsrc/example.v --------------------------------------------------------------------------------