Difference between revisions of "Lua:readRegionFromFile"
Jump to navigation
Jump to search
(Created page with ''''function''' readRegionFromFile(''Filename'', ''Address'') Reads a file from memory and writes the contents of that file to the specified address ===Function Parameters=== {…') |
m (moved readRegionFromFile to Lua:readRegionFromFile) |
||
| (5 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
| + | [[Category:Lua]] | ||
'''function''' readRegionFromFile(''Filename'', ''Address'') | '''function''' readRegionFromFile(''Filename'', ''Address'') | ||
| Line 20: | Line 21: | ||
| − | == | + | {{LuaSeeAlso}} |
| − | + | ||
| + | === Related Functions === | ||
* [[writeRegionToFile]] | * [[writeRegionToFile]] | ||
Latest revision as of 00:02, 25 January 2018
function readRegionFromFile(Filename, Address)
Reads a file from memory and writes the contents of that file to the specified address
Function Parameters[edit]
| Parameter | Type | Description |
|---|---|---|
| Filename | String | The filename to load into memory |
| Address | Integer or CEAddressString | The address to write the block of data to |