Bypass navigation menu
RGB Classic Games
Keeping the classics alive
Currently hosting 566 great games!
Return to Chapter 2

BLoad(FileName, BLoadArea)

Stores a file saved with BASIC's BSAVE function into the specified area of memory.

This is available for PASCAL programs only. This is primarily intended for use with the demo programs provided with the GRAFIX package in which BSAVE'd images are stored into arrays. Since PASCAL lacks a BLOAD function I provided one to fill in the gap.

Parameters

FileName - Name of BSAVE'd file
BLoadArea - Area of memory to store BSAVE'd image. This is usually an integer array.

Examples

BASIC

None

PASCAL

BLoad('IMAGE.BIN', Image[0]);