ChangeLog:

- big commit.
This commit is contained in:
2026-06-10 10:35:48 +03:00
parent f87b52bb7f
commit 858e5755ad
20 changed files with 411 additions and 1347 deletions
+14
View File
@@ -15,3 +15,17 @@ void bank1_func(int x) __banked
putchar('0' + x % 10);
putchar('\n');
}
void bank1_func2(int x) __banked
{
(void)x;
puts("BANK1-2: hello from a banked function (W1)!");
puts("BANK1-2: window 1 phys page = ");
hex8(_io_page_w1); /* should be BANK1's phys page */
putchar('\n');
putchar('1');
putchar('=');
putchar('0' + (x / 10) % 10);
putchar('0' + x % 10);
putchar('\n');
}
+4
View File
@@ -2,6 +2,8 @@
#include <stdint.h>
#include <sprinter.h>
void bank1_func2(int x) __banked;
void bank2_func(int x) __banked
{
(void)x;
@@ -15,4 +17,6 @@ void bank2_func(int x) __banked
putchar('0' + (x / 10) % 10);
putchar('0' + x % 10);
putchar('\n');
bank1_func2(10);
}
+2 -2
View File
@@ -18,7 +18,7 @@ int main(void)
{
errno = -1;
int16_t a0 = 0, a1 = 0;
a0 = get_text_attr();
a0 = get_text_attr();
uint8_t vMode = get_videotextmode();
set_videotextmode(TEXT_MODE_80x32);
@@ -52,7 +52,7 @@ int main(void)
/* Back to a normal attribute so the goodbye reads cleanly. */
textattr(COLOR(COLOR_LIGHTGRAY, COLOR_BLACK));
printf("a0=%d a1=%d now=%d errno=%d\n",
cprintf("a0=%d a1=%d now=%d errno=%d\n\r",
a0, a1, get_text_attr(), errno);
#ifdef DEBUG_RT
printf("w2_self_allocated = %u\n", w2_self_allocated);
+9
View File
@@ -16,6 +16,8 @@
* 5. Free the block, show the free-page count again.
*/
uint32_t buff[256];
static void show_mem(const char *label)
{
uint16_t total, free_pages;
@@ -28,6 +30,13 @@ int main(void)
{
puts("Sprinter page allocator demo");
puts("");
memset(buff, 0, sizeof(buff));
// printf("mem_io_ports_test() = 0x%02X\n", mem_io_ports_test());
printf("buff size (sizeof) = %u\n", sizeof(buff));
printf("buff size one element (sizeof) = %u\n", sizeof(buff[0]));
printf("buff first element = %u\n", buff[0]);
printf("buff last element = %u\n", buff[(sizeof(buff) / sizeof(buff[0])) - 1]);
show_mem("before:");
+15 -12
View File
@@ -10,6 +10,8 @@
#include <conio.h>
#include <mouse.h>
mouse_state_t st;
int main(void)
{
textattr(COLOR(COLOR_LIGHTGRAY, COLOR_BLACK));
@@ -29,7 +31,6 @@ int main(void)
mouse_bounds_y(0, 255);
mouse_show();
mouse_state_t st;
int last_x = -1, last_y = -1;
uint8_t last_btn = 0xFF;
/* Sensitivity is a "raw steps per cursor pixel" divider: smaller =
@@ -41,11 +42,13 @@ int main(void)
mouse_set_sensitivity(sens_x, sens_y);
int sens_dirty = 1;
st.x = st.y = 0; st.buttons = 0;
while (1) {
mouse_read(&st);
if (st.x != last_x || st.y != last_y || st.buttons != last_btn) {
gotoxy(0, 6);
cprintf("x=%4u y=%4u text(%2u,%2u) buttons=0x%02X L%c R%c ",
printf("x=%4u y=%4u text(%2u,%2u) buttons=0x%02X L%c R%c ",
st.x, st.y,
st.x / 8, st.y / 8,
st.buttons,
@@ -57,19 +60,19 @@ int main(void)
}
if (sens_dirty) {
gotoxy(0, 8);
cprintf("sensitivity horz=%3u vert=%3u ", sens_x, sens_y);
printf("sensitivity horz=%3u vert=%3u ", sens_x, sens_y);
sens_dirty = 0;
}
if (!kbhit()) continue;
int k = getch();
if (k == 27) break; /* ESC */
if (k == '1' && sens_x > 1) { sens_x -= 1; sens_dirty = 1; }
if (k == '2' && sens_x < 254) { sens_x += 1; sens_dirty = 1; }
if (k == '3' && sens_y > 1) { sens_y -= 1; sens_dirty = 1; }
if (k == '4' && sens_y < 254) { sens_y += 1; sens_dirty = 1; }
if (sens_dirty)
mouse_set_sensitivity(sens_x, sens_y);
if (!kbhit()) continue;
int k = getch();
if (k == 27) break; /* ESC */
if (k == '1' && sens_x > 1) { sens_x -= 1; sens_dirty = 1; }
if (k == '2' && sens_x < 254) { sens_x += 1; sens_dirty = 1; }
if (k == '3' && sens_y > 1) { sens_y -= 1; sens_dirty = 1; }
if (k == '4' && sens_y < 254) { sens_y += 1; sens_dirty = 1; }
if (sens_dirty)
mouse_set_sensitivity(sens_x, sens_y);
}
mouse_hide();