mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-03-24 01:09:47 +08:00
8 lines
307 B
Batchfile
8 lines
307 B
Batchfile
@echo off
|
|
set OBJDUMP=D:\RT-ThreadStudio\repo\Extract\ToolChain_Support_Packages\RISC-V\XTGccElfNewlib\V3.0.1\R\bin\riscv64-unknown-elf-objdump
|
|
set TARGET=E:\rt-thread\bsp\xuantie\smartl\e907\rtthread.elf
|
|
set OUTPUT=rtthread.asm
|
|
|
|
%OBJDUMP% -d %TARGET% > %OUTPUT%
|
|
echo Disassembly generated to %OUTPUT%
|
|
pause |