NABULIB v2023.05.10.00

The RetroNET NABU-LIB z88dk C Library for creating games and software.
Post Reply
User avatar
DJ Sures
Posts: 345
Joined: Tue Mar 28, 2023 8:36 pm
Location: nabu.ca
Contact:

NABULIB v2023.05.10.00

Post by DJ Sures »

Added a new constant where you can query the visible screen width of the current BIOS mode

Code: Select all

  // The text character display width of the current CPM BIOS. Either 40 or 80
  // Cloud CPM BIOS will always have 80 columns, but on a 40 column system only 40 columns are displayed
  // So this is the number of characters that are displayed.
  __at (0xff2e) volatile uint8_t  _CPM_COLUMN_WIDTH;   
Post Reply