
Extremely Active Member
     
Group: Moderators
Posts: 140
Member No.: 8
Joined: 13-May 04

|
Here is a Jwasm example loading resources from .res files with the INCBIN statement :
| CODE | . . . EMPTY_RSRC_SECT equ 32 RSRC_ENTRY equ 32 RSRC_OFFSET equ EMPTY_RSRC_SECT+RSRC_ENTRY
.data
Dlgbox LABEL byte INCBIN "Dlgbox.res",RSRC_OFFSET
Menu LABEL byte INCBIN "Menu.res",RSRC_OFFSET . . .
|
Attached File ( Number of downloads: 8 )
Login or Register to download
|