SI-RISCV / e200_opensource

Deprecated, please go to next generation Ultra-Low Power RISC-V Core https://github.com/riscv-mcu/e203_hbirdv2

Home Page:https://github.com/riscv-mcu/e203_hbirdv2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sirv-e-sdk目录下的Makefile脚本如何输出elf和hex文件?

xiaojia102003 opened this issue · comments

想跑一下仿真,不想用默认的verilog testcase。
但是看了一下Makefile脚本,并没有输出elf和hex的选项。
求助大神

or when i generate the hex file,how can i transfer the hex file to *.verilog or bin file----> the core can recognize format。。in generate dir?

commented

riscv-none-embed-objcopy -O verilog *.hex *.verilog

riscv-tools/riscv-tests/isa/Makefile

riscv-none-embed-objcopy -O verilog *.hex *.verilog

riscv-tools/riscv-tests/isa/Makefile

Thank you , Got it. :)