mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
22 lines
632 B
Batchfile
22 lines
632 B
Batchfile
:: Command-line script for interacting with a BSim database
|
|
|
|
@echo off
|
|
setlocal
|
|
|
|
:: maximum heap memory (may be increased)
|
|
set MAXMEM=2G
|
|
|
|
:: launch mode (fg, bg, debug, debug-suspend)
|
|
set LAUNCH_MODE=fg
|
|
|
|
:: Sets LAUNCH_DIR to the directory that contains this file (bsim.bat).
|
|
:: LAUNCH_DIR will not contain a trailing slash.
|
|
::
|
|
:: '% ~' dereferences the value in param 0
|
|
:: 'd' - drive
|
|
:: 'p' - path (without filename)
|
|
:: '~0,-1' - removes trailing \
|
|
set "LAUNCH_DIR=%~dp0"
|
|
set "LAUNCH_DIR=%LAUNCH_DIR:~0,-1%"
|
|
|
|
call "%LAUNCH_DIR%\launch.bat" %LAUNCH_MODE% jdk BSim "%MAXMEM%" "" ghidra.features.bsim.query.ingest.BSimLaunchable %*
|