1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-26 08:35:52 +00:00
QB64-PE/internal/help/_MEMFILL.txt
SMcNeill 6e01fc8dce Altered string compare routines (<,<=,>,>=) so they don't give false results with CHR$(0).
Added new _STRCMP and _STRICMP commands for quick string comparisons.
Cleaned up QB64 to finish removing the QUI (quick user insert) code and folders.
Altered UCASE and LCASE routines to be faster in some situations for us.
2014-09-22 08:19:03 -04:00

42 lines
1.3 KiB
Plaintext

The '''_MEMFILL''' statement converts a value to a specified type then fills memory with that type including any non-whole remainder.
{{PageSyntax}}
::: _MEMFILL ''memory_block'', ''memory_block.OFFSET'', ''fill_bytes'', ''variable'' [AS variable_type]
* The ''memory block'' [[_MEM]] memory block is the block referenced to be filled.
* The ''offset'' is the starting offset of the above referenced memory block.
* The ''fill bytes'' is the number of bytes to fill the memory block.
* The ''variable'' is the variable value to place in the memory block. The variable can be optionally set AS a variable [[TYPE]].
''Example:'' Filling array values quickly.
{{CodeStart}} '' ''
{{Cl|DIM}} a(100, 100) {{Cl|AS}} {{Cl|LONG}}
{{Cl|DIM}} b(100, 100) {{Cl|AS}} {{Cl|LONG}}
'filling array a with value 13
{{Cl|FOR...NEXT|FOR}} i1 = 0 {{Cl|TO}} 100
{{Cl|FOR...NEXT|FOR}} i2 = 0 {{Cl|TO}} 100
a(i1, i2) = 13
{{Cl|NEXT}}
{{Cl|NEXT}}
'filling array a with value 13
{{Cl|DIM}} mema {{Cl|AS}} {{Cl|_MEM}}
mema = {{Cl|_MEM (function)|_MEM}}(a())
{{Cl|_MEMFILL}} mema, mema.OFFSET, mema.SIZE, 13 {{Cl|AS}} {{Cl|LONG}}
{{Cl|_MEMFREE}} mema '' ''
{{CodeEnd}}
''See also:''
* [[_MEM]]
* [[_MEM (function)]]
* [[_MEMIMAGE]]
* [[_MEMNEW]]
* [[_MEMGET]], [[_MEMPUT]]
{{PageNavigation}}