mirror of
https://github.com/BertoldVdb/ms-tools.git
synced 2025-12-10 07:44:46 +01:00
12 lines
298 B
Bash
Executable file
12 lines
298 B
Bash
Executable file
#!/bin/sh
|
|
|
|
(echo ".equ HID, 0x13"; cat hook.asm) > hook_2109.asm
|
|
(echo ".equ HID, 0x14"; cat hook.asm) > hook_2106.asm
|
|
as31 -Fbin hook_2109.asm
|
|
as31 -Fbin hook_2106.asm
|
|
rm hook_2109.asm
|
|
rm hook_2106.asm
|
|
as31 -Fbin gpio.asm
|
|
as31 -Fbin code.asm
|
|
as31 -Fbin i2cRead2109.asm
|
|
as31 -Fbin i2cRead2107.asm
|