Skip to content

title: "Decrunch" description: TRSE built-in method (from IDE help)


Decrunch

Systems: C64, MEGA65, PLUS4, C128, VIC20, PET, ATARI2600, APPLEII, SNES, ORIC, BBCM, ACORN, ATARI800
Parameters: a


Decrunch( [address] );

  • [address] - address of crunched data

Description

Decrunches crunched data from the specific address. Destination address is specified in crunch.

Example

var my_crunched_data: IncBin("crunched/data_c.bin", $9000); begin decrunch(my_crunched_data); // will be decrunched to the address specified in the crunched file ...