Page 1 of 1

NABULIB v2023.05.10.00

Posted: Thu May 11, 2023 2:39 am
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;   

Re: NABULIB v2023.05.10.00

Posted: Sat Dec 28, 2024 11:27 pm
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