It is currently Thu Nov 06, 2025 12:52 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 154 posts ]  Go to page Previous  1, 2, 3, 4, 5 ... 11  Next
Author Message
 Post subject:
PostPosted: Wed Jan 18, 2006 10:59 am 
I had the same problem with plugins failing to start with one of the new BIOS versions.
Then I realized that the plugins' names and the "SYSTEM64" folder must be written in upper case. Renaming a file to upper case or overwriting it did not work, I had to format the SD-Card and rewrite it; the filename has to be the correct case the very first time you write it to the card.
But you probably already knew that and tried it...


Top
  
Reply with quote  
 Post subject:
PostPosted: Wed Jan 18, 2006 1:42 pm 
Offline
User avatar

Joined: Thu Jan 12, 2006 12:52 am
Posts: 203
Location: Denmark
errr... I had to rename mine to lower case to get the plug-ins working!?
Still haven't gotten the DFI thingie to work tho.. (BIOS 1.00).


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Wed Jan 18, 2006 3:28 pm 
Yeaaaaahhhh! Everything works fine.
I just can't sleep anymore - cool!


Top
  
Reply with quote  
 Post subject:
PostPosted: Wed Jan 18, 2006 6:35 pm 
Elvira 2 works perfectly here as well!
I'm thrilled!! :D


Top
  
Reply with quote  
 Post subject:
PostPosted: Wed Jan 18, 2006 9:27 pm 
Wohooo, finally Dreamload for the MMC64! :shock: Great work Doc, Elvira 2 and the test program work flawlessly here (running now for about 30 mins)! :D

Regarding your BIOS problem: from V0.97 on, the MMC64 bios supports long filenames, which introduced one little problem: the SYSTEM64 directory is not recognized when the operating system has created a long filename for it. In order to correct this, you have to delete the complete directory from the card, and recreate it by using upper-case letters only (SYSTEM64). Then the Bios manages to recognize it. All problems, which will find its end in V1.02.....

It´s really so cool, I can hardly wait for further releases, and your image conversion tool! Wenn ich Dir das nächste mal begegne, dann gebe ich Dir einen aus! :) :wink:


Top
  
Reply with quote  
 Post subject:
PostPosted: Wed Jan 18, 2006 9:28 pm 
Offline

Joined: Wed Jan 18, 2006 9:16 pm
Posts: 2
Argh, so much excitement, i forgot to log-in here. :roll:


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Thu Jan 19, 2006 1:51 am 
Thats's avesome! This software finally could get a killer application for MMC64!

CU
Kratznagel

P.S.: Everything is working fine here.


Top
  
Reply with quote  
 Post subject:
PostPosted: Sat Jan 21, 2006 1:56 pm 
Offline
User avatar

Joined: Thu Jan 12, 2006 11:26 am
Posts: 72
Location: LittleDreamLand
Thanks for testing the dfi plugin and for all the help with my bios problem. I just removed the lfns for the system64 directory and contents. Now it's working with the latest bios. :)


Devia wrote:
errr... I had to rename mine to lower case to get the plug-ins working!?

Strange, it did not work for me with lower case system64.

Devia wrote:
Still haven't gotten the DFI thingie to work tho.. (BIOS 1.00).

If you can start the plugin ("dfi booter..." message appears), try holding 'right shift' while pressing return to start the plugin. Hold the shift key until the first message appears. This enables the debug mode of the plugin. You have a few more options, more detailed output and the plugin waits for a keypress after every step (border flickers blue/gray). Can you tell me the last output in this mode?


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Sun Jan 22, 2006 7:40 pm 
Offline
User avatar

Joined: Thu Jan 12, 2006 11:26 am
Posts: 72
Location: LittleDreamLand
I'm working on a mmc dload version with some more caching to speed up seeking in the image. For this purpose it would be great to get rid of the mmc registers at $df1x for a while. I unlocked bit7 of $df11 and disabled everything. $11-$13 are gone, but $df10 is still there. Did anyone succeed in mnapping out *all* registers?

That's my code to disable and re-enable the mmc registers. Page 4 and 5 show only a distortion at $10, page 6 show the 4 registers from $10-$13.

Code:
MMC64_Ctrl = $df11
MMC64_Ctrl_ExtRomActive = $01
MMC64_Ctrl_nCS = $02
MMC64_Ctrl_DisableMMC = $80
MMC64_Id = $df13

   ; unlock MMC64_Ctrl_DisableMMC bit
   lda #$55
   sta MMC64_Id
   lda #$aa
   sta MMC64_Id
   ; disable mmc
   lda #MMC64_Ctrl_ExtRomActive|MMC64_Ctrl_nCS|MMC64_Ctrl_DisableMMC
   sta MMC64_Ctrl

   ; now fill the complete page
   ldx #0
   lda #$bd
tst0:
   sta $df00,x
   inx
   bne tst0

tst1:
   lda $df00,x
   sta $0400,x
   inx
   bne tst1

tst2:
   lda $df00,x
   eor #$ff
   sta $df00,x
   inx
   bne tst2

tst3:
   lda $df00,x
   sta $0500,x
   inx
   bne tst3

   ; reenable mmc
   lda #$0a
   sta MMC64_Id
   lda #$1c
   sta MMC64_Id

tst4:
   lda $df00,x
   sta $0600,x
   inx
   bne tst4


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Mon Jan 23, 2006 10:33 pm 
Offline
User avatar

Joined: Thu Jan 12, 2006 12:52 am
Posts: 203
Location: Denmark
Heh.. since I don't own a card reader/writer I've been using an iPaq to access my SD card on the PC side. This has given me some problems with CAPS/nocaps on filenames and dirs. I did rename my system64 dir to all lowercase.. or so I thought ;-) ..that iPaq explorer extension thing must be playing trix on me ;-)

Anyways, what I have now is SYSTEM64 dir in all uppercase letters and that works. However the plugins need to be ALL uppercase letters too! -otherwise they won't load. Is this "normal" behaviour?

oh.. I almost forgot, the DFI plugin seems to work perfectly now (BIOS v1.01) ;-)


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Thu Feb 09, 2006 2:07 pm 
Any NEWS? :)


Top
  
Reply with quote  
 Post subject:
PostPosted: Sun Feb 12, 2006 10:06 pm 
yeah any news??


Top
  
Reply with quote  
 Post subject:
PostPosted: Sun Feb 12, 2006 10:19 pm 
Offline

Joined: Thu Jan 12, 2006 9:10 am
Posts: 177
Off-topic:
Devia wrote:
Anyways, what I have now is SYSTEM64 dir in all uppercase letters and that works. However the plugins need to be ALL uppercase letters too! -otherwise they won't load. Is this "normal" behaviour?

Yes, as BIOS uses 8.3 names and they are uppercase only. Using short names also explains why creating SYSTEM64 directory with Windows Explorer doesn't work - directory is initially named as "New folder" (localized if you don't have english Windows) and later renamed to "SYSTEM64". However, at that time there already is long filename entry, so short directory name will be "SYSTEM~1".


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Wed Feb 22, 2006 4:51 pm 
Offline

Joined: Thu Jan 12, 2006 10:47 am
Posts: 112
excellent!

_________________
http://hitmen.eu


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Wed Feb 22, 2006 7:26 pm 
Offline

Joined: Sat Jan 14, 2006 4:08 pm
Posts: 26
I wonder where I could find some paris-hilton stuff :lol:


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 154 posts ]  Go to page Previous  1, 2, 3, 4, 5 ... 11  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group