- Notifications
You must be signed in to change notification settings - Fork2
License
NotificationsYou must be signed in to change notification settings
RyBo/scadder
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This project was designed to implement a way for Microblaze to monitor specific memory regions of aReal Time Operating System, as well as report any kinds of malicious activity. In addition, it wasmeant to be run in an environment that supported the MIL-STD-1553 protocol.
To build the hardware design as well as importing the Xilinx SDK source code applications, run the following command
$ ./util/build.sh
To manually build, see the wiki page:https://github.com/RyBo/scadder/wiki/Building
If you wish to make changes to the block design in Vivado, you must export the new block design file and ensure it matches the vivado build file specified in:vivado/build.tcl
Seehttps://github.com/RyBo/scadder/wiki/Updating-the-Block-Design
vivado├── build.tcl├── export_hardware.tcl├── generate_bitstream.tcl└── src ├── bd │ └── design_1.tcl └── hdlsdk├── build_project.tcl├── CPU0│ ├── Debug│ │ ├── CPU0.elf│ │ ├── CPU0.elf.size│ │ ├── makefile│ │ ├── objects.mk│ │ ├── sources.mk│ │ └── src│ │ ├── CPU0.d│ │ ├── CPU0.o│ │ ├── platform.d│ │ ├── platform.o│ │ └── subdir.mk│ └── src│ ├── helloworld.c│ ├── lscript.ld│ ├── platform.c│ ├── platform_config.h│ └── platform.h├── CPU1│ └── Debug│ ├── CPU1.elf│ ├── CPU1.elf.size│ ├── makefile│ ├── objects.mk│ ├── sources.mk│ └── src│ ├── CPU1.d│ ├── CPU1.o│ ├── platform.d│ ├── platform.o│ └── subdir.mk├── MB0│ └── src│ ├── helloworld.c│ ├── lscript.ld│ ├── platform.c│ ├── platform_config.h│ └── platform.h├── RT1│ └── src│ ├── lscript.ld│ └── testperiph.c└── RT2 └── src ├── lscript.ld └── testperiph.cutil├── build.sh├── deploy.sh└── spoof-mac