Update README.md

This commit is contained in:
Jeff Harris 2019-12-10 10:56:25 -08:00 committed by GitHub
parent e3a6995118
commit 5f0d3652b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -44,17 +44,17 @@ void CalcEngineForce(tCar_spec *c, br_scalar dt) {
### Usage ### Usage
1. Concatenate the executable file and the symbol file 1. Concatenate the executable file and the symbol file
``` ```sh
cat carma1.exe dethrace.sym > carma_with_symbols.exe cat carma1.exe dethrace.sym > carma_with_symbols.exe
``` ```
2. Execute wdump and pipe the output to file 2. Execute wdump and pipe the output to file
``` ```sh
wdump -Daglmt carma_with_symbols.exe > dump.txt wdump -Daglmt carma_with_symbols.exe > dump.txt
``` ```
3. Execute the codegen tool 3. Execute the codegen tool
``` ```sh
codegen.py dump.txt codegen.py dump.txt
``` ```