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


Forums > C64 Coding > 1541 low level programming problem
2007-08-21 19:04
Peiselulli

Registered: Oct 2006
Posts: 81
1541 low level programming problem

Hello,
I have a problem that I don't understand. I tried the
following code for the 1541 :

    jsr $F97E       ; MOTOR_ON
    jsr $fe00       ; SET_READ_MODE
loop
    BIT $1C00       ; SYNC signal
    BMI loop        ; not yet found?
    LDA $1C01       ; read byte
    lda $1c00
    eor #$08
    sta $1c00
    CLV
-
    bvc -
    lda $1c01
    jmp loop


I expect (if a floppy is inserted) that the LED flickers, but it does not. If I remove the "bvc" command, it works like expected. Has anybody a idea what I have forgotten to initialize ?

2007-08-21 19:24
Conrad

Registered: Nov 2006
Posts: 833
Try this code. It isn't modified, it's just some of the code is re-arranged:

	jsr $F97E       ; MOTOR_ON
    	jsr $fe00       ; SET_READ_MODE
loop
    	BIT $1C00       ; SYNC signal
    	BMI loop        ; not yet found?
	bvc *
	lda $1c01
	clv

    	lda $1c00
    	eor #$08
    	sta $1c00

	jmp loop


Bear in mind that the process is very fast so you'll probably see very faint flicker in the drive LED, which means it's working.

I'm not too sure what the difference is, but I think it's something to do with clearing the overflow flag at the right point.
2007-08-21 19:27
Peiselulli

Registered: Oct 2006
Posts: 81
many thanks, now it works
2007-08-21 19:32
Frantic

Registered: Mar 2003
Posts: 1628
Edit: [nothing.] :)
2007-08-21 21:28
Peiselulli

Registered: Oct 2006
Posts: 81
Hmm, strange things happens:

If I modify the Code like this to read a second byte:

	jsr $F97E       ; MOTOR_ON
    	jsr $fe00       ; SET_READ_MODE
loop
    	BIT $1C00       ; SYNC signal
    	BMI loop        ; not yet found?
	bvc *
	lda $1c01
	clv
	bvc *
	lda $1c01
	clv

; short break to see the LED flickering

        ldy #$20
        ldx #$00
-
        inx
        bne -
        dey
        bne -

    	lda $1c00
    	eor #$08
    	sta $1c00

	jmp loop


It did not work any more.
Any suggestions ?

2007-08-22 07:38
Krill

Registered: Apr 2002
Posts: 2853
This is from my loader:

waitsync: bit VIA2_T1C_H
bpl wsynctmout
bit VIA2_PRB
bmi waitsync
bit VIA2_PRA
clv
bvc *
ldx #$00
lda VIA2_PRA; is never $00 but usually $52/$55
clv
rts

It's pretty long ago, but i guess the read access to $1c01 (VIA2_PRA) after the sync and _before_ the first clv is mandatory for some reason.

May i ask what your experiments will eventually lead to? :)
2007-08-22 07:38
Krill

Registered: Apr 2002
Posts: 2853
(Excuse my lame posting skillz)

This is from my loader:
waitsync:   bit VIA2_T1C_H
            bpl wsynctmout
            bit VIA2_PRB
            bmi waitsync
            bit VIA2_PRA
            clv
            bvc *
            ldx #$00
            lda VIA2_PRA; is never $00 but usually $52 (header) or $55 (data)
            clv
            rts

It's pretty long ago, but i guess the read access to $1c01 (VIA2_PRA) after the sync and _before_ the first clv is mandatory for some reason.

May i ask what your experiments will eventually lead to? :)
2007-08-22 17:34
Peiselulli

Registered: Oct 2006
Posts: 81
this experiments have no real aim, its just for getting more knowledge programming the 1541.

But the thing getting even more strange:
The following code did not work, but I see no really difference to your code:

loop
    BIT $1C00       ; SYNC signal
    bmi loop        ; not yet found?
    bit $1c01
    clv
    bvc *
    lda $1c01
    clv

    ldy #$20
    ldx #$00
-
    inx
    bne -
    dey
    bne -

    lda $1c00
    eor #$08
    sta $1c00

    jmp loop



2007-08-22 19:03
Krill

Registered: Apr 2002
Posts: 2853
Have you executed an SEI and are you really on a 1541 (and not a 1571 in 2mhz mode or so)?
2007-08-22 19:05
Peiselulli

Registered: Oct 2006
Posts: 81
I am on a 1541-II and i have do a "sei" before.
I have the feeling that anything is missing for reading bytes
(because the sync bit works in write mode, too)

2007-08-22 19:10
Krill

Registered: Apr 2002
Posts: 2853
Hmm, if you're on a valid formatted track i don't see a reason for the routine to fail. It's stuck in the bvc loop, right?
2007-08-22 19:11
Peiselulli

Registered: Oct 2006
Posts: 81
yes, it did.
is there something to initalize that i have forgotten ?
2007-08-22 19:14
Krill

Registered: Apr 2002
Posts: 2853
Also from my loader:
            lda #CB2_OUTPUT_HIGH | CB1_IRQ_ON_NEG_ACTIVE_EDGE | CA2_OUTPUT_HIGH | CA1_IRQ_ON_NEG_ACTIVE_EDGE
            sta VIA2_PCR

This is an lda #$ee sta $1c0c, maybe that fixes it?
2007-08-22 19:16
Peiselulli

Registered: Oct 2006
Posts: 81
many thanks, that was missing !
now it flickers :->
2007-08-22 19:21
Krill

Registered: Apr 2002
Posts: 2853
Greatness :)
2007-08-22 23:21
Graham
Account closed

Registered: Dec 2002
Posts: 990
Also, I'd add a wait loop after turning the motor on. It takes some time until it has 100% speed.

Oh and for searching a sync, you can use the routine at $F556.
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
SoNiC/Onslaught/tOM
Slator/Arsenic/Stone..
wil
manganoid/Hokuto Force
Asphodel
Sentinel/Excess/TREX
Guests online: 156
Top Demos
1 13:37  (9.8)
2 Next Level  (9.8)
3 Mojo  (9.7)
4 Coma Light 13  (9.7)
5 Edge of Disgrace  (9.6)
6 Comaland 100%  (9.6)
7 No Bounds  (9.6)
8 Uncensored  (9.6)
9 Wonderland XIV  (9.6)
10 Multiverse 100%  (9.6)
Top onefile Demos
1 It's More Fun to Com..  (9.7)
2 Party Elk 2  (9.7)
3 Cubic Dream  (9.6)
4 Layers  (9.6)
5 Copper Booze  (9.5)
6 TRSAC, Gabber & Pebe..  (9.5)
7 Rainbow Connection  (9.5)
8 Dawnfall V1.1  (9.5)
9 Quadrants  (9.5)
10 Daah, Those Acid Pil..  (9.5)
Top Groups
1 Oxyron  (9.3)
2 Booze Design  (9.3)
3 Nostalgia  (9.3)
4 Censor Design  (9.3)
5 Crest  (9.3)
Top Original Suppliers
1 Black Beard  (9.7)
2 Derbyshire Ram  (9.5)
3 hedning  (9.2)
4 Baracuda  (9.1)
5 Jazzcat  (8.6)

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