Log inRegister an accountBrowse CSDbHelp & documentationFacts & StatisticsThe forumsAvailable RSS-feeds on CSDbSupport CSDb Commodore 64 Scene Database
 Welcome to our latest new user maak ! (Registered 2024-04-18) You are not logged in - nap
CSDb User Forums


Forums > C64 Coding > keep top 2 rows of screen from vertical scrolling
2021-07-19 03:09
TheWarCriminal
Account closed

Registered: May 2011
Posts: 30
keep top 2 rows of screen from vertical scrolling

I lost my code from years ago that would keep the top 2 rows of the character screen (1024+80) from vertical scrolling with no flickering. I used it for the BBS I was creating back then. With recent devs in CBASE not performing how I would like it too I have started back recoding that BBS but I need 2 very important things. First off is a no vertical scroll on the top 2 rows. I know CBASE has one but it flickers and is compiled. Would like one in ML or someone point me in a starting direction. The 2nd one is a date ML routine. I know how to check the time and convert it into a readable format but the timer does not hold a date so it keeps resetting at 24hr. Since I am coding this BBS for WinVice is there a way to get the info from the emulated RTC?

I know this sounds like I have no clue what I am doing but when you have been away from c64 coding for 3 decades you loose the knowledge. Just getting reacquainted with BASIC V2 is a hazzle when you are so used to VB.NET behind code. One oh the things that constantly get me is the string setup: BASIC V2 is string$ where as VB.NET is $string. Which ever company decided to screw around with the context should have left it alone.

Any help would be appreciated in this. (I have searched the forums here, Google and Internet Archive c64 Books)
 
... 28 posts hidden. Click here to view all posts....
 
2021-07-21 07:47
ChristopherJam

Registered: Aug 2004
Posts: 1370
Quoting TheWarCriminal
The 2nd one is a date ML routine. I know how to check the time and convert it into a readable format but the timer does not hold a date so it keeps resetting at 24hr. Since I am coding this BBS for WinVice is there a way to get the info from the emulated RTC?


VICE emulates the original hardware, which only tracks the time and not a date, so no there is not.

If you're planning on running the BBS continuously, you do however have the option of having your 'get date' routine log what time you last called it, and on next call see if it's "earlier in the day" than the previous call, which you could then use as a cue to increment the date before you return.
2021-07-21 07:54
ChristopherJam

Registered: Aug 2004
Posts: 1370
As for the reverse not working, you can replace the inner loop
with

SHOWTEXT
    lda #$00
    sta TEXTP

GTEXT
    lda TEXTP
    cmp #$01+79
    beq EXITTEXT
    ldx TEXTP
    lda TEXTm,x
    clc
    adc #192
    sta TEXTOUTPUT,x
    inc TEXTP
    jmp GTEXT

EXITTEXT


Note the "#" before the 192, and the CLC on the line before.

You can also save a few instructions by doing this:
SHOWTEXT
    lda #$00
    sta TEXTP

GTEXT
    ldx TEXTP
    cpx #$01+79
    beq EXITTEXT
    lda TEXTm,x
    clc
    adc #192
    sta TEXTOUTPUT,x
    inc TEXTP
    jmp GTEXT

EXITTEXT


or, shorter again
SHOWTEXT
    ldx #$00
    stx TEXTP

GTEXT
    cpx #$01+79
    beq EXITTEXT
    lda TEXTm,x
    clc
    adc #192
    sta TEXTOUTPUT,x
    inx
    jmp GTEXT

EXITTEXT


then you can drop TEXTP altogether, and move the comparison to the end, and you can almost certainly replace the clc/adc with an EOR, cutting it down to
SHOWTEXT
    ldx #$00
GTEXT
    lda TEXTm,x
    eor #192
    sta TEXTOUTPUT,x
    inx
    cpx #80
    bne GTEXT


Hope that helps.
2021-07-21 10:03
Krill

Registered: Apr 2002
Posts: 2825
If that dubious ADC is intended to invert characters defined as screen codes and copied directly to screen memory, shouldn't it rather be EOR #$80? :)
2021-07-21 11:42
ChristopherJam

Registered: Aug 2004
Posts: 1370
I'm guessing it's also meant to be converting from some other rep to screencodes?

Also, best way to avoid the flicker at the top is probably to clone the kernal routines then patch them to remove the first two rows from the area updated by the scroll code..
2021-07-21 11:44
chatGPZ

Registered: Dec 2001
Posts: 11100
Don't forget to patch the HOME location too
2021-07-21 12:35
Krill

Registered: Apr 2002
Posts: 2825
Quoting Groepaz
Don't forget to patch the HOME location too
Or just have prints all ordinary on 40x25, but with a split that would optionally display a hires bitmap in the top two rows (no $d800 issue). Or, well, border sprites!
2021-07-21 12:40
chatGPZ

Registered: Dec 2001
Posts: 11100
Oh yeah, border sprites with RS232 NMI going on \o/
2021-07-21 12:47
ChristopherJam

Registered: Aug 2004
Posts: 1370
Quoting Krill
Quoting Groepaz
Don't forget to patch the HOME location too
Or just have prints all ordinary on 40x25, but with a split that would optionally display a hires bitmap in the top two rows (no $d800 issue).


Yes, I think Silver Dream already mentioned raster splits.

(much as you already mentioned stealing the kernal routine - though I was thinking more, disable ROM and patch the kernal routine, so scroll is still triggered by character printing as usual)

Nice idea using hires bitmap to avoid d800 issues though!

I'm still unclear as to whether he wants to do smooth scrolling or just the usual row resolution scrolling.
2021-07-21 12:51
Krill

Registered: Apr 2002
Posts: 2825
Quoting ChristopherJam
though I was thinking more, disable ROM and patch the kernal routine, so scroll is still triggered by character printing as usual
Somebody mentioned memory being tight, so i guess hooking into the CHROUT vector and doing some interception and custom scroll etc. seems more feasible than hogging 8 KB for pretty much the same functionality. =)
2021-07-21 12:54
Krill

Registered: Apr 2002
Posts: 2825
Quoting Groepaz
Oh yeah, border sprites with RS232 NMI going on \o/
Same problem as with a raster split, no? But can be turned off for transfers.

And i guess you wouldn't really use actual NMI but poll the flag from mainline thread instead (for maximum transfer speed)?
Previous - 1 | 2 | 3 | 4 | 5 - Next
RefreshSubscribe to this thread:

You need to be logged in to post in the forum.

Search the forum:
Search   for   in  
All times are CET.
Search CSDb
Advanced
Users Online
niallquinn
WVL/Xenon
iceout/Avatar/HF
Guests online: 168
Top Demos
1 Next Level  (9.8)
2 Mojo  (9.7)
3 Coma Light 13  (9.7)
4 Edge of Disgrace  (9.6)
5 Comaland 100%  (9.6)
6 No Bounds  (9.6)
7 Uncensored  (9.6)
8 Wonderland XIV  (9.6)
9 The Ghost  (9.6)
10 Bromance  (9.6)
Top onefile Demos
1 It's More Fun to Com..  (9.8)
2 Party Elk 2  (9.7)
3 Cubic Dream  (9.6)
4 Copper Booze  (9.5)
5 Rainbow Connection  (9.5)
6 Wafer Demo  (9.5)
7 TRSAC, Gabber & Pebe..  (9.5)
8 Onscreen 5k  (9.5)
9 Dawnfall V1.1  (9.5)
10 Quadrants  (9.5)
Top Groups
1 Oxyron  (9.3)
2 Nostalgia  (9.3)
3 Booze Design  (9.3)
4 Censor Design  (9.3)
5 Crest  (9.3)
Top NTSC-Fixers
1 Pudwerx  (10)
2 Booze  (9.7)
3 Stormbringer  (9.7)
4 Fungus  (9.6)
5 Grim Reaper  (9.3)

Home - Disclaimer
Copyright © No Name 2001-2024
Page generated in: 0.046 sec.