12345678910111213141516171819202122232425262728293031323334353637 |
- .. _func_banks_createbank:
- ==========
- CreateBank
- ==========
- CreateBank -
- Description
- ===========
- .. code-block:: blitzmax
- CreateBank:TBank( size=0 )
- Create a bank
- #CreateBank creates a Bank allocating a specified amount of memory that
- can be used for storage of binary data using the various Poke and
- Peek commands.
- Parameters
- ==========
- Return Values
- =============
- A bank object with an initial size of @size bytes
- Examples
- ========
- See Also
- ========
|