Added memory address patching

This commit is contained in:
Eduard Urbach 2023-10-29 12:24:40 +01:00
parent d6be76b85a
commit fbe6aa80bb
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
9 changed files with 98 additions and 35 deletions

8
src/config/config.go Normal file
View file

@ -0,0 +1,8 @@
package config
const (
MinAddress = 0x10000
BaseAddress = 0x40 * MinAddress
CodeOffset = 0x80
Align = 0x10
)