NABULIB v2023.05.10.00

The RetroNET NABU-LIB z88dk C Library for creating games and software.
Post Reply
User avatar
DJ Sures
Posts: 347
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;   
User avatar
AGMS
Posts: 18
Joined: Tue Feb 20, 2024 9:56 pm

Re: NABULIB v2023.05.10.00

Post by AGMS »

I've made my own fork of this version of NABULIB (currently most recent), for NthPongWars customisations (like removing that unnecessary 2K text buffer if I need memory space). But for now, I've just put in the (void) function declarations from LinuxPlayGround's fork (minus ones where void was added to comments and function calls!). Also in a subsequent commit I removed spurious carriage return characters and trailing spaces (less weirdness in git diff). You can see it at: https://github.com/agmsmith/NABU-LIB/tr ... omisations
Post Reply