OldComp.cz

Komunitní diskuzní fórum pro fanoušky historických počítačů


Právě je 24.04.2024, 08:46

Všechny časy jsou v UTC + 1 hodina [ Letní čas ]




Odeslat nové téma Odpovědět na téma  [ Příspěvků: 40 ]  Přejít na stránku 1, 2, 3  Další
Autor Zpráva
PříspěvekNapsal: 05.02.2024, 17:54 
Offline
Kecka
Uživatelský avatar

Registrován: 18.01.2024, 15:02
Příspěvky: 32
Bydliště: Torino - Italy
Has thanked: 5 times
Been thanked: 7 times
This is a first release, I still don't know the ESC sequences for the CP/M console.
Information regarding the LEC-CP/M console is welcome.

Příloha:
zbasic.tap [27.02 KiB]
30 krát


Příloha:
mbasic_lec.png
mbasic_lec.png [ 13.39 KiB | Zobrazeno 1020 krát ]


Příloha:
song.png
song.png [ 2.53 KiB | Zobrazeno 1020 krát ]


Nahoru
 Profil  
 
PříspěvekNapsal: 05.02.2024, 20:48 
Offline
Profík

Registrován: 26.11.2018, 16:59
Příspěvky: 581
Bydliště: Holešov
Has thanked: 13 times
Been thanked: 91 times
Hello Stefano,
here is in translated part of the manual:

Kód:
 ASCII characters with codes 20H to 7EH, BEL, BS, LF a CR are handled as usual,  other control codes are in following table:

Char.      Function         Char.      Function
ESC = y x      CURSOR LEAD      ESC T      ERASE TO EOLN
ESC R      DELETE LINE      ESC E      INSERT LINE
ESC (      LOWLIGHT      ESC )      HIGHLIGHT
CTRL Z      CLS+HOME

( y and x for CURSOR LEAD have offset 20H)

   BIOS does not handle codes  TAB, FF a DEL. Control codes should be as close to standard as possible and are compatible with Televideo 925 (or 912 or 950) control codes.


Nahoru
 Profil  
 
PříspěvekNapsal: 06.02.2024, 16:12 
Offline
Kecka
Uživatelský avatar

Registrován: 18.01.2024, 15:02
Příspěvky: 32
Bydliště: Torino - Italy
Has thanked: 5 times
Been thanked: 7 times
Thank you !
I already noticed that the color attributes were scrolling, but that only 7 character rows were moved (one probably is for spacing only).
I hoped the console had color sequences, probably the scrolling is for HIGHLIGH/LOWLIGHT, I will experiment.


Nahoru
 Profil  
 
PříspěvekNapsal: 06.02.2024, 19:04 
Offline
Pan Štábní
Uživatelský avatar

Registrován: 12.05.2013, 21:39
Příspěvky: 1977
Bydliště: Praha
Has thanked: 85 times
Been thanked: 255 times
I'm not sure I understand the problem. If you can write pixels to the graphics memory, you can write attributes in the same way as well. You don't have to use any ESC sequence or something like that. It doesn't matter because CP/M doesn't use graphics in standard.

Can you attach here zxbasic.com as a binary file without encapsulation in .tap or any other .img file please? I had tried to extract zxbasic.com from attached TAP and try it on real Betadisk CP/M but it didn't work at all so I'm not sure where is the problem.


Nahoru
 Profil  
 
PříspěvekNapsal: 07.02.2024, 11:48 
Offline
Profík

Registrován: 26.11.2018, 16:59
Příspěvky: 581
Bydliště: Holešov
Has thanked: 13 times
Been thanked: 91 times
I think there will be no easy solution... What is the reason of this project? some universal (CP/M) BASIC for different kind of Spectrum? There is mix of standard routines (calling CP/M or BIOS services) with platform dependant routines (Sound + Graphics). And also each implementation of CP/M offers different services... I think the worst combination.

There is a version of MS BASIC on Czech computer called TNS - they took classic 5.2 and added graphics commands for this unique computer (I am not sure if it is compatible with anything), but I guess this new BASIC shloud be something similiar for Spectrum


Nahoru
 Profil  
 
PříspěvekNapsal: 07.02.2024, 13:33 
Offline
Kecka
Uživatelský avatar

Registrován: 18.01.2024, 15:02
Příspěvky: 32
Bydliště: Torino - Italy
Has thanked: 5 times
Been thanked: 7 times
This project is a concept for z88dk, to add zx Spectrum graphics to the CP/M libraries.
While I'm on it, I'm experimenting with the original Microsoft Basic . This port includes all the graphics logic used on GWBASIC (which is a subset of the MSX one) and a single voice sound support. The console support is not totally equivalent on all the CP/M implementation, but I'm keeping LOCATE adapted for the specific BIOS.
I'm currently covering about 13 different CP/M versions for the Spectrum, the programs can be saved also on tape and loaded on a different model.
By the way I confirm the idea is similar to the TNS basic you mentioned. I included a so called "macro language", which Microsoft used for PLAY and DRAW, this can be a possible difference.


Nahoru
 Profil  
 
PříspěvekNapsal: 07.02.2024, 14:36 
Offline
Kecka
Uživatelský avatar

Registrován: 18.01.2024, 15:02
Příspěvky: 32
Bydliště: Torino - Italy
Has thanked: 5 times
Been thanked: 7 times
I'm attaching a demo of what I'm going to add to z88dk.
This time I'll add both TAP and COM files (rename BIN to COM).

Příloha:
hawk.tap [9.27 KiB]
22 krát


Příloha:
hawk.bin [9.01 KiB]
21 krát


Nahoru
 Profil  
 
PříspěvekNapsal: 07.02.2024, 16:41 
Offline
Kecka
Uživatelský avatar

Registrován: 18.01.2024, 15:02
Příspěvky: 32
Bydliště: Torino - Italy
Has thanked: 5 times
Been thanked: 7 times
Příloha:
zxbasic.tap [26.95 KiB]
21 krát


Příloha:
zxbasic.bin [26.92 KiB]
20 krát



At the moment I chose the generic color handling.
I still suspect there must be a way to inject the right color values to in this CP/M BIOS, as I did for the border color (it stays unchanged also when the keyboard clicks).

Příloha:
mbasic_lec2.png
mbasic_lec2.png [ 12.37 KiB | Zobrazeno 765 krát ]


Nahoru
 Profil  
 
PříspěvekNapsal: 07.02.2024, 18:47 
Offline
Pan Štábní
Uživatelský avatar

Registrován: 12.05.2013, 21:39
Příspěvky: 1977
Bydliště: Praha
Has thanked: 85 times
Been thanked: 255 times
I can confirm that both programs (hawk and zxbasic) work in Betadisk CP/M.


Nahoru
 Profil  
 
PříspěvekNapsal: 07.02.2024, 20:29 
Offline
Kecka
Uživatelský avatar

Registrován: 18.01.2024, 15:02
Příspěvky: 32
Bydliště: Torino - Italy
Has thanked: 5 times
Been thanked: 7 times
Thank you so much!
I'll go ahead and publish the build option on z88dk


Nahoru
 Profil  
 
PříspěvekNapsal: 07.02.2024, 23:39 
Offline
Kecka
Uživatelský avatar

Registrován: 18.01.2024, 15:02
Příspěvky: 32
Bydliště: Torino - Italy
Has thanked: 5 times
Been thanked: 7 times
Could you share the betadisk CP/M system disk image?


Nahoru
 Profil  
 
PříspěvekNapsal: 08.02.2024, 10:47 
Offline
Profík

Registrován: 26.11.2018, 16:59
Příspěvky: 581
Bydliště: Holešov
Has thanked: 13 times
Been thanked: 91 times
I can share with you install TRD image for betadisc, the problem is with format, at the time I was converting my floppies there was no chance to backup it since there was different format of the tracks for track 0-1 and 2-79 (sector size)

also there is still no emulator which can do both LEC memroy expension and Betadisc. I have partialy disassembled the BIOS for this CP/M and it is even possible to have not only 528BRAM but it could be up to 1040kB RAM and also 512kB ROMdisk !!! the BIOS is ready for it, but I dont know anyone (except author i guess) who has this extension.

Did you think about modifying the BASIC so it can use extended memory?


Nahoru
 Profil  
 
PříspěvekNapsal: 08.02.2024, 11:02 
Offline
Kecka
Uživatelský avatar

Registrován: 18.01.2024, 15:02
Příspěvky: 32
Bydliště: Torino - Italy
Has thanked: 5 times
Been thanked: 7 times
Příloha:
zxbasic_lec.png
zxbasic_lec.png [ 12.26 KiB | Zobrazeno 675 krát ]


On the LEC CP/M the console colors refer to ATTR-P, it was very simple but I probably did a mistake in my past experiments.

Here is the (hopefully) final version.

Příloha:
zxbasic_lec.bin [26.94 KiB]
22 krát


Příloha:
zxbasic.tap [26.96 KiB]
23 krát



The console management should be good enough to allow programs running similarly on QUORUM, PINIX, ELWRO, HC2000, HC91

Most of the CP/M targets can share a simple color behavior, e.g. to change the text color on all the screen, this will work everywhere:

10 COLOR 6,0,0
20 CLS

The difference is that on some target COLOR will alter the display color immediately, on the accurate BIOS implementations a CLS is required.

On 1 or 2 targets the border color is not stable, and is restored to the default color when the keyboard clicks.


Nahoru
 Profil  
 
PříspěvekNapsal: 08.02.2024, 11:10 
Offline
Kecka
Uživatelský avatar

Registrován: 18.01.2024, 15:02
Příspěvky: 32
Bydliště: Torino - Italy
Has thanked: 5 times
Been thanked: 7 times
l00k píše:
I can share with you install TRD image for betadisc, the problem is (...)
Did you think about modifying the BASIC so it can use extended memory?


No, I consider the BASIC port for the LEC CP/M completed.

I'd prefer to get a disk image in Teledisk (TD0), ImageDisk (IMD) or EDSK (DSK) format, it should preserve sector, track and possibly the skew logic.

My intention is to extend z88dk-appmake with the existing disk formats.
Appmake can create, other than RAW/TRD, also IMD, ANAdisk, D88 and EDSK containers.

So far, it manages the following CP/M formats:

Kód:

actrixss            Accesss Matrix SS
40 tracks, 9 sectors/track, 512 bytes/sector, 64 entries, 1024 bytes/extent

actrix              Accesss Matrix DS
40 tracks, 9 sectors/track, 512 bytes/sector, 64 entries, 2048 bytes/extent

alphatro            Alphatronic PC
40 tracks, 16 sectors/track, 256 bytes/sector, 128 entries, 2048 bytes/extent

altos5              Altos 5
80 tracks, 9 sectors/track, 512 bytes/sector, 177 entries, 4096 bytes/extent

altos580            Altos 580
80 tracks, 9 sectors/track, 512 bytes/sector, 256 entries, 4096 bytes/extent

ampro               Ampro 48tpi
40 tracks, 10 sectors/track, 512 bytes/sector, 64 entries, 2048 bytes/extent

amust               Amust Executive
80 tracks, 5 sectors/track, 1024 bytes/sector, 320 entries, 2048 bytes/extent

amustold            Amust Executive (old)
80 tracks, 5 sectors/track, 1024 bytes/sector, 320 entries, 2048 bytes/extent

apple2              Apple II Softcard
35 tracks, 16 sectors/track, 256 bytes/sector, 64 entries, 1024 bytes/extent

archive             Archive II & III
80 tracks, 5 sectors/track, 1024 bytes/sector, 320 entries, 2048 bytes/extent

attache             Otrona Attache'
40 tracks, 10 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

aussie              AussieByte Knight2000
80 tracks, 5 sectors/track, 1024 bytes/sector, 256 entries, 2048 bytes/extent

beehive             Beehive Topper
80 tracks, 10 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

bbc                 BBC Micro Z80CPU SSSD
80 tracks, 5 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

bic                 BIC / A5105
80 tracks, 5 sectors/track, 1024 bytes/sector, 128 entries, 2048 bytes/extent

bigboard            X820/Bigboard, 8in
77 tracks, 26 sectors/track, 128 bytes/sector, 64 entries, 1024 bytes/extent

bw12                Bondwell 12/14
40 tracks, 18 sectors/track, 256 bytes/sector, 128 entries, 2048 bytes/extent

bw2                 Bondwell Model 2
80 tracks, 18 sectors/track, 256 bytes/sector, 128 entries, 2048 bytes/extent

caos                CAOS/NANOS/z1013 CP/M
80 tracks, 5 sectors/track, 1024 bytes/sector, 128 entries, 2048 bytes/extent

cpcsystem           CPC System Disc
40 tracks, 9 sectors/track, 512 bytes/sector, 64 entries, 1024 bytes/extent

cpcvortex           CPC Vortex CP/M Disc
80 tracks, 9 sectors/track, 512 bytes/sector, 256 entries, 4096 bytes/extent

col1                Coleco ADAM 40T SSDD
40 tracks, 8 sectors/track, 512 bytes/sector, 64 entries, 1024 bytes/extent

corvette            Corvette
80 tracks, 5 sectors/track, 1024 bytes/sector, 128 entries, 2048 bytes/extent

corvboot            Corvette Boot
80 tracks, 5 sectors/track, 1024 bytes/sector, 128 entries, 2048 bytes/extent

datamax             Datamax-8000, 8in
77 tracks, 26 sectors/track, 128 bytes/sector, 64 entries, 1024 bytes/extent

dmv                 NCR Decision Mate
40 tracks, 8 sectors/track, 512 bytes/sector, 256 entries, 2048 bytes/extent

eagle2              Eagle II
80 tracks, 5 sectors/track, 1024 bytes/sector, 192 entries, 2048 bytes/extent

einstein            Tatung Einstein
40 tracks, 10 sectors/track, 512 bytes/sector, 64 entries, 2048 bytes/extent

excali64            Excalibur 64
80 tracks, 5 sectors/track, 1024 bytes/sector, 128 entries, 2048 bytes/extent

fp1100              Casio FP1100
40 tracks, 16 sectors/track, 256 bytes/sector, 64 entries, 2048 bytes/extent

gemini              GeminiGalaxy
35 tracks, 10 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

gnat10              Gnat System 10
40 tracks, 10 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

hp125               HP 125/120
35 tracks, 16 sectors/track, 256 bytes/sector, 128 entries, 1024 bytes/extent

idpfdd              Iskra Delta Partner
73 tracks, 18 sectors/track, 256 bytes/sector, 128 entries, 2048 bytes/extent

kayproii            Kaypro ii
40 tracks, 10 sectors/track, 512 bytes/sector, 64 entries, 1024 bytes/extent

kaypro4             Kaypro 4/10
40 tracks, 10 sectors/track, 512 bytes/sector, 64 entries, 2048 bytes/extent

lynx                Camputers Lynx
40 tracks, 10 sectors/track, 512 bytes/sector, 64 entries, 1024 bytes/extent

lnw80               LNW80 TRS80 Clone
40 tracks, 18 sectors/track, 256 bytes/sector, 64 entries, 2048 bytes/extent

max80cpm3           Lobo MAX-80 CPM3 SS
40 tracks, 10 sectors/track, 512 bytes/sector, 64 entries, 1024 bytes/extent

microbee-ds40       Microbee DS40
40 tracks, 10 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

microbee-ds80       Microbee DS80
80 tracks, 10 sectors/track, 512 bytes/sector, 128 entries, 4096 bytes/extent

micromate           PMC-101 MicroMate
40 tracks, 5 sectors/track, 1024 bytes/sector, 128 entries, 2048 bytes/extent

morrow2             Morrow MD 2 (SS)
40 tracks, 5 sectors/track, 1024 bytes/sector, 128 entries, 2048 bytes/extent

morrow3             Morrow MD 3 (DS)
40 tracks, 5 sectors/track, 1024 bytes/sector, 192 entries, 2048 bytes/extent

mbc1000             Sanyo MBC-1000/1150
40 tracks, 16 sectors/track, 256 bytes/sector, 64 entries, 2048 bytes/extent

mbc1200             Sanyo MBC-200/1250
80 tracks, 16 sectors/track, 256 bytes/sector, 128 entries, 4096 bytes/extent

mbc2000             Sanyo MBC-2000 SS80T
80 tracks, 16 sectors/track, 256 bytes/sector, 64 entries, 2048 bytes/extent

naburn              Nabu PC (8mb)
16384 tracks, 4 sectors/track, 128 bytes/sector, 512 entries, 4096 bytes/extent

nabupc              Nabu PC
40 tracks, 5 sectors/track, 1024 bytes/sector, 96 entries, 1024 bytes/extent

nascomcpm           Nascom CPM
77 tracks, 10 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

nshd8               Northstar Virtual 8
1024 tracks, 16 sectors/track, 512 bytes/sector, 256 entries, 8192 bytes/extent

mz80                Sharp MZ80A/80B
35 tracks, 10 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

mz800               Sharp MZ800
40 tracks, 8 sectors/track, 512 bytes/sector, 64 entries, 2048 bytes/extent

mz2500cpm           Sharp MZ2500 - CPM
80 tracks, 16 sectors/track, 256 bytes/sector, 128 entries, 2048 bytes/extent

osborne1            Osborne 1 DD
40 tracks, 5 sectors/track, 1024 bytes/sector, 64 entries, 1024 bytes/extent

osborne1sd          Osborne 1 SD
40 tracks, 10 sectors/track, 256 bytes/sector, 64 entries, 2048 bytes/extent

pasopia             Toshiba Pasopia/T100
35 tracks, 16 sectors/track, 256 bytes/sector, 64 entries, 1024 bytes/extent

pc6001              NEC PC6001/6601
40 tracks, 16 sectors/track, 256 bytes/sector, 64 entries, 1024 bytes/extent

pc8001              NEC PC8001
40 tracks, 16 sectors/track, 256 bytes/sector, 64 entries, 1024 bytes/extent

pc88                NEC PC8001/8801,FM7/8
40 tracks, 16 sectors/track, 256 bytes/sector, 128 entries, 2048 bytes/extent

pcw80               Amstrad PCW, 80T
80 tracks, 9 sectors/track, 512 bytes/sector, 256 entries, 2048 bytes/extent

pcw40               Amstrad PCW, 40T
40 tracks, 9 sectors/track, 512 bytes/sector, 64 entries, 1024 bytes/extent

plus3               ZX Spectrum +3 173k
40 tracks, 9 sectors/track, 512 bytes/sector, 64 entries, 1024 bytes/extent

scorpion            ZX Scorpion, Profi
80 tracks, 16 sectors/track, 256 bytes/sector, 128 entries, 4096 bytes/extent

atmturbo            ZX MicroART ATM Turbo
80 tracks, 16 sectors/track, 256 bytes/sector, 128 entries, 2048 bytes/extent

diskface            ZX Dataputer DISKFACE
40 tracks, 9 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

elwro               ZX Elwro 800 Junior
80 tracks, 9 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

fdd3000             ZX Timex FDD-3000
35 tracks, 16 sectors/track, 256 bytes/sector, 128 entries, 1024 bytes/extent

hc91                ZX ICE Felix HC-91
40 tracks, 9 sectors/track, 512 bytes/sector, 64 entries, 2048 bytes/extent

hc2000              ZX HC-2000 / CoBra
80 tracks, 9 sectors/track, 512 bytes/sector, 64 entries, 2048 bytes/extent

quorum              ZX Quorum,Profi,Hobb.
80 tracks, 5 sectors/track, 1024 bytes/sector, 128 entries, 2048 bytes/extent

qc10                Epson QC-10, QX-10
40 tracks, 10 sectors/track, 512 bytes/sector, 64 entries, 2048 bytes/extent

rainbow             DEC Rainbow/DECmate
80 tracks, 10 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

rc700               Regnecentralen RC-700
35 tracks, 9 sectors/track, 512 bytes/sector, 112 entries, 2048 bytes/extent

sagafox             SAGA FOX OS
35 tracks, 10 sectors/track, 512 bytes/sector, 64 entries, 2048 bytes/extent

seequa              Seequa Chameleon (SS)
40 tracks, 8 sectors/track, 512 bytes/sector, 64 entries, 1024 bytes/extent

sharpx1             Sharp X1
40 tracks, 16 sectors/track, 256 bytes/sector, 64 entries, 2048 bytes/extent

smc777              Sony SMC-70/SMC-777
70 tracks, 16 sectors/track, 256 bytes/sector, 128 entries, 2048 bytes/extent

svi-40ss            SVI 40ss (174k)
40 tracks, 17 sectors/track, 256 bytes/sector, 64 entries, 1024 bytes/extent

teletekds           Teletek Systemaster
40 tracks, 18 sectors/track, 256 bytes/sector, 128 entries, 2048 bytes/extent

teletekss           Teletek (SS)
40 tracks, 18 sectors/track, 256 bytes/sector, 128 entries, 1024 bytes/extent

televideo           Televideo TS80x/TPC1
40 tracks, 18 sectors/track, 256 bytes/sector, 128 entries, 2048 bytes/extent

tiki100ss           Tiki 100 (200k)
40 tracks, 10 sectors/track, 512 bytes/sector, 128 entries, 1024 bytes/extent

tiki100ds           Tiki 100 (400k)
40 tracks, 10 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

tim011              TIM011 (DSDD 3.5")
80 tracks, 5 sectors/track, 1024 bytes/sector, 256 entries, 2048 bytes/extent

omikron             TRS80 I Omikron
35 tracks, 18 sectors/track, 128 bytes/sector, 64 entries, 1024 bytes/extent

lifeboat            TRS80 II Lifeboat
77 tracks, 8 sectors/track, 1024 bytes/sector, 128 entries, 2048 bytes/extent

fmgcpm              TRS80 II FMG CP/M
77 tracks, 26 sectors/track, 256 bytes/sector, 128 entries, 2048 bytes/extent

ptcpm               TRS80 II PickelsTrout
77 tracks, 16 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

holmes              TRS80 Holmes VID-80
40 tracks, 10 sectors/track, 512 bytes/sector, 64 entries, 1024 bytes/extent

merchant            TRS80 III MemMerchant
40 tracks, 10 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

compactor           TRS80 III Hurricane C
40 tracks, 5 sectors/track, 1024 bytes/sector, 128 entries, 2048 bytes/extent

montezuma           TRS80 4 Montezuma
40 tracks, 18 sectors/track, 256 bytes/sector, 128 entries, 2048 bytes/extent

m4cpm3              TRS80 4 CP/M Plus
40 tracks, 8 sectors/track, 512 bytes/sector, 64 entries, 1024 bytes/extent

vector06c           Vector 06c
80 tracks, 10 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

v1050               Visual 1050
80 tracks, 10 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

cortex              Cortex CW/P
40 tracks, 10 sectors/track, 512 bytes/sector, 64 entries, 1024 bytes/extent

vt180               DEC VT-180
40 tracks, 9 sectors/track, 512 bytes/sector, 64 entries, 1024 bytes/extent

x820                Xerox 820
40 tracks, 18 sectors/track, 128 bytes/sector, 32 entries, 1024 bytes/extent

hz89                Zenith Z89, Z17-SSSD
40 tracks, 10 sectors/track, 256 bytes/sector, 64 entries, 1024 bytes/extent

hz100               Zenith Z100, DSDD
40 tracks, 8 sectors/track, 512 bytes/sector, 256 entries, 2048 bytes/extent

magnolia            Zenith Z89, magnolia
40 tracks, 9 sectors/track, 512 bytes/sector, 128 entries, 2048 bytes/extent

z80pack             z80pack 8" format
77 tracks, 26 sectors/track, 128 bytes/sector, 64 entries, 1024 bytes/extent




Nahoru
 Profil  
 
PříspěvekNapsal: 09.02.2024, 12:46 
Offline
Profík

Registrován: 26.11.2018, 16:59
Příspěvky: 581
Bydliště: Holešov
Has thanked: 13 times
Been thanked: 91 times
can you suggest me any ZX Spectrum emulator which can work with BETADISC (TRD/SCL files) and internaly work with image in different format (IMD,TD0,DSK) which can be exported? Another problem is with Betadisk that it does not need to number sides, it is done by HW setting of one bit of special port... so elder TRDOSes use only side 0 when writing on real floppy... and these discs are impossible to read in PC - how this could be handled in IMD/TD0/DSK


Nahoru
 Profil  
 
Zobrazit příspěvky za předchozí:  Seřadit podle  
Odeslat nové téma Odpovědět na téma  [ Příspěvků: 40 ]  Přejít na stránku 1, 2, 3  Další

Všechny časy jsou v UTC + 1 hodina [ Letní čas ]


Kdo je online

Uživatelé procházející toto fórum: Žádní registrovaní uživatelé a 7 návštevníků


Nemůžete zakládat nová témata v tomto fóru
Nemůžete odpovídat v tomto fóru
Nemůžete upravovat své příspěvky v tomto fóru
Nemůžete mazat své příspěvky v tomto fóru
Nemůžete přikládat soubory v tomto fóru

Hledat:
Přejít na:  
Založeno na phpBB® Forum Software © phpBB Group
Český překlad – phpBB.cz