1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-01-13 23:26:59 +00:00
Benjamin Herrenschmidt fe275effeb New C based JTAG debug tool
This works with both the sim socket and urjtag, and supports the
new core functions, loading a file in memory etc...

The code still needs a lot of cleanup and a help!

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
2019-09-20 16:46:31 +10:00

8 lines
94 B
Makefile

CFLAGS = -O2 -g -Wall -std=c99
all: mw_debug
mw_debug: mw_debug.c
$(CC) -o $@ $^ -lurjtag