From 5ea842b88b7e799826f33ec9b8c80d4a0091bebe Mon Sep 17 00:00:00 2001 From: mrdudz Date: Thu, 1 Oct 2015 15:03:11 +0200 Subject: [PATCH] SCREEN->screensize --- libsrc/c64/extra/soft80.s | 4 ++-- libsrc/c64/{soft80_kscreen.s => soft80_scrsize.s} | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename libsrc/c64/{soft80_kscreen.s => soft80_scrsize.s} (64%) diff --git a/libsrc/c64/extra/soft80.s b/libsrc/c64/extra/soft80.s index baf61f635..e6b373b64 100644 --- a/libsrc/c64/extra/soft80.s +++ b/libsrc/c64/extra/soft80.s @@ -48,8 +48,8 @@ .export PLOT := soft80_kplot ; soft80_kscreen.s - .import soft80_kscreen - .export SCREEN := soft80_kscreen + .import soft80_screensize + .export screensize := soft80_screensize ;------------------------------------------------------------------------------- ; force the init constructor to be imported diff --git a/libsrc/c64/soft80_kscreen.s b/libsrc/c64/soft80_scrsize.s similarity index 64% rename from libsrc/c64/soft80_kscreen.s rename to libsrc/c64/soft80_scrsize.s index 22c7b6788..caaeb4791 100644 --- a/libsrc/c64/soft80_kscreen.s +++ b/libsrc/c64/soft80_scrsize.s @@ -1,9 +1,9 @@ - .export soft80_kscreen + .export soft80_screensize .include "soft80.inc" -soft80_kscreen: +soft80_screensize: ldy #screenrows ldx #charsperline rts