title: "FLD" description: TRSE built-in method (from IDE help)
FLD
Systems: C64, MEGA65, PLUS4, C128
Parameters: b,n
FLD( [byte], [number] );
- [byte] - number of raster lines to skip
- [number] - 0 = text mode or 1 = bitmap graphics mode
Description
Flexible Line Distance effect. Parameter 1 specifies the number of raster lines to skip, while parameter 2 specifies whether to use text mode (0) or bitmap graphics mode (1).
See https://codebase64.org/doku.php?id=base:fld for more information on this effect.
Example
a := sine[ time ] / 16 + 1;
Fld( a, 1 ); // bitmap graphics mode