English Amiga Board


Go Back   English Amiga Board > Support > support.Hardware

 
 
Thread Tools
Old 28 March 2018, 09:27   #161
SimonV
Registered User
 
SimonV's Avatar
 
Join Date: Apr 2014
Location: Antwerp
Posts: 262
Quote:
Originally Posted by retromax View Post
I remember reading about them about 1998 but owning one back then was just a pipe dream for me, I started editing video on a pc around 2000 when Adobe Premiere came bundled with my capture card. It’s only taken me 20 years to get one! Lol but now it’s about the fact that I always wanted one and one just came within my grasp, I love old technology and learning about this is gonna be fun as I’m gonna capture some vhs and pretend it’s 1998, life was good Back then I still had my parents and what seemed like all the time in the world. Currently I’m using google translate to get my head around this, it would be nice to have it in English but if that never comes to fruition it seems like a simple interface to learn via buttons. I know bewerken means ‘edit’ so my translation there is I bewerken on this video... Lol
I am sure someone can write you an English disk with his Kryoflux so you can reinstall it ? I can, I still have my friend’s Kryoflux here so. My manual is in Dutch so there I can not help.
SimonV is offline  
Old 28 March 2018, 11:36   #162
retromax
Registered User
 
Join Date: Mar 2018
Location: United Kingdom
Posts: 78
Quote:
Originally Posted by SimonV View Post
I am sure someone can write you an English disk with his Kryoflux so you can reinstall it ? I can, I still have my friend’s Kryoflux here so. My manual is in Dutch so there I can not help.
Yeah that would be great, I read into the kryoflux but I t just wouldn’t be worth it for me to get my own, it took some convincing for the wife to let me pay £180 (including postage) for the Casablanca but she let me get it❤️. I’m currently building a raspberry pi based arcade controller, I’ve done a few things similar in the past as I said I’m into retro gaming and stuff (not very good at actually playing games lol) but I love doing stuff like that.

Last edited by retromax; 28 March 2018 at 11:38. Reason: Spelling
retromax is offline  
Old 28 March 2018, 20:25   #163
davideo
Amiga Tomcat
 
davideo's Avatar
 
Join Date: Sep 2007
Location: Boston Lincs
Posts: 1,500
Quote:
Originally Posted by retromax View Post
...it took some convincing for the wife to let me pay £180 (including postage) for the Casablanca but she let me get it❤️.
You could have had mine for that amount

There's a Casablanca manual on Joshs Website under Applications.
davideo is offline  
Old 28 March 2018, 22:13   #164
retromax
Registered User
 
Join Date: Mar 2018
Location: United Kingdom
Posts: 78
Ah you live and learn I guess!,
These have just a standard pc floppy drive right? I was thinking of swapping the beige one over for a black one that’s all as it would look better, got plenty of them.
retromax is offline  
Old 29 March 2018, 10:21   #165
retromax
Registered User
 
Join Date: Mar 2018
Location: United Kingdom
Posts: 78
Quote:
Originally Posted by davideo View Post

There's a Casablanca manual on Joshs Website under Applications.
Thanks
retromax is offline  
Old 04 April 2018, 17:30   #166
Toni Wilen
WinUAE developer
 
Join Date: Aug 2001
Location: Hämeenlinna/Finland
Age: 49
Posts: 26,506
Casablanca arrived but examination has to wait, too much other winuae related updates to do. And I also expect to get enough donations to cover the postage

Question: if Amiga programs (even shell programs) can't be used (if you want to see the output), does serial remote shell work normally? I need some easy way to run shell programs.

I also need to image the HD and replace it with SCSI to IDE + CF combination. I don't want to use ancient hard disks..
Toni Wilen is offline  
Old 04 April 2018, 19:43   #167
Jope
-
 
Jope's Avatar
 
Join Date: Jul 2003
Location: Helsinki / Finland
Age: 43
Posts: 9,861
We never ended up trying the serial port, our results were achieved by redirecting output to a file on the boot disk, then reading the disk back in.
Jope is online now  
Old 05 April 2018, 17:42   #168
Toni Wilen
WinUAE developer
 
Join Date: Aug 2001
Location: Hämeenlinna/Finland
Age: 49
Posts: 26,506
Status:

ROMs dumped ("74095 00 717 02 01 U4" and "74095 00 717 02 02 U5"). Does anyone know if there are different ROM versions? CRC32: 1bdcd18c and 6ccb0431.

ROMs mapped to address space (address zero) in emulation. Boot code (non-encrypted part at the beginning of ROM image) runs, decrypts the ROM (I thought PIC was part of decryption but decryption code is in plain text in boot code), sets up MMU tables, enables MMU, does something, then gets stuck in infinite loop.

MMU is required, MMU is used to remap ROM (at usual $f8xxxx space), also oddly enough used to map RAM at address zero for exception vectors (instead of moving VBR).

RAM is hardwired at $40000000.

That was the simple part. Next comes lots of unknowns. How does interrupts work? (No Paula), addresses of all weird Casablanca-only hardware. And much more..

EDIT: Board contains too many FPGAs and CPLDs..

Quote:
Originally Posted by Jope View Post
We never ended up trying the serial port, our results were achieved by redirecting output to a file on the boot disk, then reading the disk back in.
Thats not very real-time

Last edited by Toni Wilen; 05 April 2018 at 19:28.
Toni Wilen is offline  
Old 05 April 2018, 18:21   #169
gulliver
BoingBagged
 
gulliver's Avatar
 
Join Date: Aug 2007
Location: The South of nowhere
Age: 46
Posts: 2,358
@Toni Wilen

You have to be creative, but you can use this command to get visual interaction with a Casablanca.

This is the preliminary documentation I have made:

Code:
crequest
Casablanca Requester 
Version: 1.4 (30.3.98)

requires a Casablanca with libs:ovlgfx.library.

TEXT/A,GADTXT/A, RESET

Displays a requestchoice window with a small border around it. 
Text is automatically centered.
If a line of text exceeds the available line space, wordwrap and newline are automatically applied.

The "^" character (without quotes) instructs a newline.
The "|" character (without quotes) is a separator for button choices.
RESET should be put at the very end of crequest lines to apply a screen clear operation (cls). If not, crequest windows will stack on top of each other.

Example:

Set Version                "V2.9.4 Beta"
crequest "CASABLANCA Installation^============================^This disk contains ${Version}.^Please select language." "Deutsch|English" RESET
set temp0 "$rc"
if $temp0 eq 2
   skip English
endif
if $temp0 eq 1
  skip Deutsch
endif
gulliver is offline  
Old 05 April 2018, 19:14   #170
Toni Wilen
WinUAE developer
 
Join Date: Aug 2001
Location: Hämeenlinna/Finland
Age: 49
Posts: 26,506
I don't see how it helps. As I said I need to run shell commands, in real time. Anything else is unacceptable.
Toni Wilen is offline  
Old 05 April 2018, 21:37   #171
Toni Wilen
WinUAE developer
 
Join Date: Aug 2001
Location: Hämeenlinna/Finland
Age: 49
Posts: 26,506
It "boots" a bit in emulation now, enough for exec to get memory added.

>Tm
400a3000 10 10 draco memory
Attributes 0507 First 40115400 Lower 400a3020 Upper 44000000 Free 65959448

>Tl
40115260 9 0 40.1 0 utility.library (utility 40.1 (10.2.93))
40115724 9 -20 40.2 0 expansion.library (expansion 40.2 (9.3.93))
40116260 9 -100 40.10 1 exec.library (exec 40.10 (15.7.93)

>Tr
40115398 8 0 draco.resource

It also uses MMU to trap custom register writes and uses it to emulate some custom registers, for example INTENA.

Currently it get stuck in routine that continuously writes "bug 1" to some IO addresses (perhaps front panel display?).

Following unknown IO addresses are read or written multiple times during boot:

02000003
02000043
02000083
020007c3 (this must return >=4 or boot code enters in infinite loop)
024009e3 (boot code writes different status codes to this register while booting)
024009eb
02400bf3
02400fc3
02400fc7
02400ff3
Toni Wilen is offline  
Old 06 April 2018, 00:36   #172
gulliver
BoingBagged
 
gulliver's Avatar
 
Join Date: Aug 2007
Location: The South of nowhere
Age: 46
Posts: 2,358
Quote:
Originally Posted by Toni Wilen View Post
I don't see how it helps. As I said I need to run shell commands, in real time. Anything else is unacceptable.

As attachment you will find a tool for serial line command console execution on the Casablanca.

For details on its usage read the following thread from post #89 onwards:

http://www.a1k.org/forum/showthread.php?t=45960&page=5

Hope this helps now

Last edited by gulliver; 08 April 2018 at 12:01.
gulliver is offline  
Old 06 April 2018, 08:24   #173
musashi5150
move.w #$4489,$dff07e
 
musashi5150's Avatar
 
Join Date: Sep 2005
Location: Norfolk, UK
Age: 42
Posts: 2,351
Quote:
Originally Posted by Toni Wilen View Post
Does anyone know if there are different ROM versions? CRC32: 1bdcd18c and 6ccb0431.
I dumped mine and the CRC matches with yours Labelled as 08.97-1.6 from an 060 (no DV card) machine.
musashi5150 is offline  
Old 06 April 2018, 11:11   #174
Toni Wilen
WinUAE developer
 
Join Date: Aug 2001
Location: Hämeenlinna/Finland
Age: 49
Posts: 26,506
Quote:
Originally Posted by musashi5150 View Post
I dumped mine and the CRC matches with yours Labelled as 08.97-1.6 from an 060 (no DV card) machine.
Strange that they have different labels but same contents.

Quote:
Originally Posted by gulliver View Post
As attachment you will find a tool for serial line command console execution on the Casablanca.

For details on its usage read the following thread from post #89 onwards:

http://www.a1k.org/forum/showthread.php?t=45960&page=5

Hope this helps now
Looks far too complex and it does not do what I want to do.

newshell aux: does not work? (with aux-handler patched to use correct serial device name). I only want confirmation. I am not interested in experimenting with boring stuff.

Again: I want to run shell commands, not some built-in minimal commands that don't do exactly what I want. No workarounds accepted!
Toni Wilen is offline  
Old 06 April 2018, 12:30   #175
gulliver
BoingBagged
 
gulliver's Avatar
 
Join Date: Aug 2007
Location: The South of nowhere
Age: 46
Posts: 2,358
This one seems to have another CRC32.

It is a rom 1.6 (08.97) with a CRC32 F4BF7FCD


It was sent to me 8 years ago. :O
Attached Files
File Type: zip CassieROM-Crom1.6-U5-08.zip (307.1 KB, 253 views)

Last edited by gulliver; 06 April 2018 at 12:47.
gulliver is offline  
Old 06 April 2018, 12:39   #176
Toni Wilen
WinUAE developer
 
Join Date: Aug 2001
Location: Hämeenlinna/Finland
Age: 49
Posts: 26,506
It is quite useless without matching U4 dump (even words).
Toni Wilen is offline  
Old 06 April 2018, 12:42   #177
gulliver
BoingBagged
 
gulliver's Avatar
 
Join Date: Aug 2007
Location: The South of nowhere
Age: 46
Posts: 2,358
This is U4 of the same machine.
Attached Files
File Type: zip CassieRom-74095-00-717-02-01-U4.zip (308.6 KB, 240 views)
gulliver is offline  
Old 06 April 2018, 12:48   #178
Toni Wilen
WinUAE developer
 
Join Date: Aug 2001
Location: Hämeenlinna/Finland
Age: 49
Posts: 26,506
They are exact same as mine. Only difference is that your dumps are byteswapped for some reason.
Toni Wilen is offline  
Old 06 April 2018, 12:50   #179
gulliver
BoingBagged
 
gulliver's Avatar
 
Join Date: Aug 2007
Location: The South of nowhere
Age: 46
Posts: 2,358
All other roms I have match those other two CRC32.
gulliver is offline  
Old 08 April 2018, 07:46   #180
Jope
-
 
Jope's Avatar
 
Join Date: Jul 2003
Location: Helsinki / Finland
Age: 43
Posts: 9,861
Quote:
Originally Posted by davideo View Post
@Jope

and of course anybody else that wants to grab them.

Sixteen images of Casablanca software.

Some are Multilanguage but all include English.
So finally some results..

The old link has been updated:
https://drive.google.com/drive/folde...kp?usp=sharing

- Video Spicerack was the same as the previous one
- Effekt Diskette was the same as the previous Effekt Diskette 1
- The image for Monument titler 1.6 has a different checksum than the previous one, but the payload inside (md1.lzx) is the same. Seems the previous one we had was a clean install disk, not an update. The ones you provided are actual update disks.
- Schriften Diskette 2 and Monument titler 1.5 need to be redumped, lots of bad sectors.
- Bluebox 2 was reconstructed even though there was a bad sector. It was on an empty track, so it didn't matter. I just filled it in with the appropriate fill pattern.

If you have the energy, could you try redumping the bad ones please? It's a good idea to clean the drive heads first and potentially the disks need cleaning too.

Last edited by Jope; 08 April 2018 at 08:31.
Jope is online now  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
DraCo Casablanca for 45e... Cobe MarketPlace 22 10 August 2014 08:52
casablanca roms and pictures mech Amiga scene 4 24 November 2010 05:28
For Sale: MACROSYSTEM TOCCATA Soundcard piemmeweb MarketPlace 0 08 September 2009 23:04
Macrosystem Falcon 1240 accelerator gulliver support.Hardware 11 30 May 2008 10:52
Microvitec or scandoubler? Definitive thread. buckrogers support.Hardware 12 08 March 2006 19:47

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 18:19.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.11139 seconds with 16 queries