This documentation is obsolete. For actual documentation go https://c64lib.github.io/.

« Back

tiles

Usage

The tiles module consists of following files:

  • lib/tiles-2x2.asm
  • lib/tiles-color-ram-shift.asm
  • lib/tiles-common.asm
  • lib/tiles-screen-shift.asm

All files located directly in lib directory can be imported to your source code using #import directive, i.e.:

#import "text/lib/tiles-color-ram-shift.asm"

All library files located directly under lib directory has #importonce declared which means they can be safely imported multiple times - only first import is effective.

Library files with -global.asm suffix contains globalized elements that can be directly accessed from root namespace. All names of these elements (except labels) are prefixed with c64lib_ prefix.