Added test firmware for zynq

Signed-off-by: Joppe Blondel <joppe@blondel.nl>
This commit is contained in:
2022-09-08 13:29:11 +02:00
parent 379bf1f689
commit 7c5351b9c3
11 changed files with 872 additions and 0 deletions

View File

@ -0,0 +1,15 @@
#include "ps7_init.h"
#include "zynq.h"
#include "uart.h"
#include "printf.h"
void main(){
cpu_disable_interrups();
// Initialize ZYNQ Processing System
ps7_init();
// Start UART
uart_setup();
printf("Hello World!\n");
}