
How to build dex reloc files with Fasm

Requirements:
- Switch to PE format
- Specify entry point with "entry" directive
- put all code/data in a section called ".dex4u"
- put relocs in a section called ".reloc"

Use pe2dex to convert the executable.

Suggested:
- put the db "--$$EXE+CUT+HERE$$-",0 mark at the end of your program
- use the /TRIM option when converting

See the example in fasm_test
