URL
https://opencores.org/ocsvn/neorv32/neorv32/trunk
Subversion Repositories neorv32
Compare Revisions
- This comparison shows the changes necessary to convert path
/neorv32/trunk/sw/example/blink_led
- from Rev 65 to Rev 68
- ↔ Reverse comparison
Rev 65 → Rev 68
/main.c
93,7 → 93,7
// use ASM version of LED blinking (file: blink_led_in_asm.S) |
#ifdef USE_ASM_VERSION |
|
blink_led_asm((uint32_t)(&GPIO_OUTPUT)); |
blink_led_asm((uint32_t)(&NEORV32_GPIO.OUTPUT_LO)); |
|
// use C version of LED blinking |
#else |
/makefile
34,6 → 34,7
# The NEORV32 Processor - https://github.com/stnolting/neorv32 (c) Stephan Nolting # |
################################################################################################# |
|
# Modify this variable to fit your NEORV32 setup (neorv32 home folder) |
NEORV32_HOME ?= ../../.. |
|
include ../../common/common.mk |
include $(NEORV32_HOME)/sw/common/common.mk |