Search found 2001 matches

by stefano
Mon May 29, 2023 10:41 am
Forum: CP/M, FLOS and OS related
Topic: CPMDISK - found a way to extend to many formats and test
Replies: 3
Views: 54

Re: CPMDISK - found a way to extend to many formats and test

Osborne 1 formats improved by addind the single density format and the correct disk speed and interleave settings.
Now the disk images work correctly also in IMD mode.
by stefano
Sat May 27, 2023 7:05 pm
Forum: CP/M, FLOS and OS related
Topic: CPMDISK - found a way to extend to many formats and test
Replies: 3
Views: 54

Re: CPMDISK - found a way to extend to many formats and test

VT-180 disk mode pulled.
Having a good emulation level helps in creating accurate disk images, with transfer speed and skew settings closer to the real ones, raising the probability to get working suff on the real hardware.
by stefano
Sat May 27, 2023 12:19 pm
Forum: CP/M, FLOS and OS related
Topic: Visual Technology 1050
Replies: 9
Views: 163

Re: Visual Technology 1050

that's not impossible, I'm confident that the emulation work better on the v1050 than on the mbc200
I simply couldn't figure out how to make it work
by stefano
Fri May 26, 2023 5:39 pm
Forum: CP/M, FLOS and OS related
Topic: CPMDISK - found a way to extend to many formats and test
Replies: 3
Views: 54

Re: CPMDISK - found a way to extend to many formats and test

In this way I could verify that the disk format for the Televideo TS-803 and TPC1 is the same of the TS-802.
I'm renaming it in appmake and I'm adding a generic "televideo" subtype.
by stefano
Fri May 26, 2023 1:12 pm
Forum: CP/M, FLOS and OS related
Topic: CPMDISK - found a way to extend to many formats and test
Replies: 3
Views: 54

CPMDISK - found a way to extend to many formats and test

The Telcon Zorba portable CP/M computer had a lot of disk options, I'm using it to check the formats we've already implemented and possibly find the extra ones which could be nice to have. Well, I'm already disappointed, I can't understand how the IMD format could keep the 1..20 sector numbering wor...
by stefano
Fri May 26, 2023 11:31 am
Forum: CP/M, FLOS and OS related
Topic: Visual Technology 1050
Replies: 9
Views: 163

Re: Visual Technology 1050

It shouldn't happen, I wondered whether I forgot to update something in the public z88dk tree, but they're 2 files only and they are ok. zcc +cpm -subtype=v1050 -create-app tic.c mame v1050 -flop1 1050-sys.td0 -flop2 a.imd I could run it on a recent MAME build (self-built from the current dev tree, ...
by stefano
Thu May 25, 2023 1:10 pm
Forum: CP/M, FLOS and OS related
Topic: Visual Technology 1050
Replies: 9
Views: 163

Re: Visual Technology 1050

I'm going to pull in the full VT-ANSI engine, which is quite perverse, because it encapsulates the ANSI ESC sequences in an ANSI ESC interpreter ! v1050ansi.png Alternatively programmers can totally skip the ansi VT engine and use the native mode which will accept almost all the ANSI VT sequences, w...
by stefano
Wed May 24, 2023 10:28 am
Forum: Feature Requests
Topic: sccz80 allow return 8-bit values in L register
Replies: 12
Views: 154

Re: sccz80 allow return 8-bit values in L register

In short, you're expecting sccz80 to force h to zero, right?
by stefano
Tue May 23, 2023 5:40 pm
Forum: CP/M, FLOS and OS related
Topic: Visual Technology 1050
Replies: 9
Views: 163

Re: Visual Technology 1050

https://user-images.githubusercontent.com/10224992/240363429-c733bd81-a20e-4a07-8d8b-01003b0f0fb6.png Support of generic console with 8x8 font and udg is now ready (the code is a nightmare of ESC sequences!). I still couldn't find a way to catch the talkback from the video section, it probably requ...
by stefano
Fri May 19, 2023 12:00 pm
Forum: CP/M, FLOS and OS related
Topic: Visual Technology 1050
Replies: 9
Views: 163

Re: Visual Technology 1050

I'm now looking for the way to get data from the video section (6502 controlled).

A handy way to read the V1050 sources is on this link:
http://v1050.classiccmp.org/src/index.html
by stefano
Thu May 18, 2023 2:58 pm
Forum: CP/M, FLOS and OS related
Topic: Visual Technology 1050
Replies: 9
Views: 163

Re: Visual Technology 1050

Sometimes the transmission breaks. I could observe it also with the original GSX driver, so I'm not sure it does not depend on the emulation (I'm using an old version of MESS because I miss some of the ROM images). Passing the parameters as ASCII-decimal values works much better, but sometimes the p...
by stefano
Thu May 18, 2023 11:49 am
Forum: CP/M, FLOS and OS related
Topic: Visual Technology 1050
Replies: 9
Views: 163

Re: Visual Technology 1050

I finally had to mix BIOS calls and direct out to allow a stable communication.
A first minimal set of graphics is now working, I think I'll open a PR and proceed by steps.
v1050globe.png
by stefano
Wed May 17, 2023 9:39 am
Forum: CP/M, FLOS and OS related
Topic: Visual Technology 1050
Replies: 9
Views: 163

Visual Technology 1050

This is another interesting hw, its concept is very close to the Sanyo MBC-200, but the terminal control and graphics were delegated to a 6502 CPU. There's a nice sw set (TOSEC) in archive.org which include the rather rare "DR Graph" and useful original system oriented source code. https:/...
by stefano
Tue May 16, 2023 7:06 am
Forum: CP/M, FLOS and OS related
Topic: Sanyo MBC-XXXX CP/M models
Replies: 40
Views: 830

Re: Sanyo MBC-XXXX CP/M models

I think it is in a consistent status, now. Considering that mbc_send() has its own advantages in terms of speed and control over BIOS or BDOS, I decided not to change it. It is rather convenient to replace it with a function calling the BIOS on the other Sanyo systems. I can't wait to move on and tr...
by stefano
Mon May 15, 2023 7:47 pm
Forum: CP/M, FLOS and OS related
Topic: Sanyo MBC-XXXX CP/M models
Replies: 40
Views: 830

Re: Sanyo MBC-XXXX CP/M models

It's very comfortable indeed. I must have messed with the underlined text attribute, bit 7 in CAPS, which is tempting me to provide both the implementations (there's very little code in this case) . I should also change the calls to mbc_send in the terminal code (OUTing to the 2nd CPU directly) and ...
by stefano
Mon May 15, 2023 4:15 pm
Forum: CP/M, FLOS and OS related
Topic: Sanyo MBC-XXXX CP/M models
Replies: 40
Views: 830

Re: Sanyo MBC-XXXX CP/M models

I try immediately :)
I suppose the direct ansi VT implementation is still preferable, right?
by stefano
Mon May 15, 2023 2:57 pm
Forum: CP/M, FLOS and OS related
Topic: Sanyo MBC-XXXX CP/M models
Replies: 40
Views: 830

Re: Sanyo MBC-XXXX CP/M models

> ..you might not have implemented all the functions or be missing the CAPS defc? As usual, you are right. VT52.png This technique has only one possible positive aspect, the code gets probably portable on other, never emulated SANYO models. On the MBC-200/1200 series the attributes work only in 33 r...
by stefano
Mon May 15, 2023 11:51 am
Forum: CP/M, FLOS and OS related
Topic: Sanyo MBC-XXXX CP/M models
Replies: 40
Views: 830

Re: Sanyo MBC-XXXX CP/M models

What's the best way to alter the existing --generic-console library ? I tried to simply rewrite the functions but they collide with the existing library, I suppose the console code is built on the fly: duplicate definition: generic_console_ADM3::generic_console_printc error: duplicate definition: ge...
by stefano
Sat May 13, 2023 9:13 pm
Forum: CP/M, FLOS and OS related
Topic: Sanyo MBC-XXXX CP/M models
Replies: 40
Views: 830

Re: Sanyo MBC-XXXX CP/M models

I'd really like to do so but I could find a reliable way to access to the video memory directly. All the video stuff is in charge to a twin z80 CPU and something gets garbled. I'm not even sure the output way is 100% stable, even if the normal console operation runs perfectly. The ESC codes are Sany...
by stefano
Sat May 13, 2023 7:26 am
Forum: CP/M, FLOS and OS related
Topic: Sanyo MBC-XXXX CP/M models
Replies: 40
Views: 830

Re: Sanyo MBC-XXXX CP/M models

Considering the current emulation limits (not confirmed by comparing with the real machine) it is probably convenient to stub a one - way text library to support the z88dk generic terminal, etc
by stefano
Fri May 12, 2023 11:51 pm
Forum: CP/M, FLOS and OS related
Topic: Xerox 820 disk format
Replies: 20
Views: 261

Re: Xerox 820 disk format

fantastic! if it gets generic we can use it in several cases.
by stefano
Fri May 12, 2023 9:23 am
Forum: Amstrad
Topic: CPC Maths working again
Replies: 19
Views: 374

Re: CPC Maths working again

RobertK wrote: Tue May 09, 2023 6:57 amWhat other targets do not support the standard -lm library? As far as I know the PMD85?
Regarding the library limits, I'm proud I adapted qsort() to the 8080,it should allow the othello game to run :D
by stefano
Thu May 11, 2023 9:23 pm
Forum: CP/M, FLOS and OS related
Topic: Sanyo MBC-XXXX CP/M models
Replies: 40
Views: 830

Re: Sanyo MBC-XXXX CP/M models

I wrote the missing Wiki page, hope it helps
by stefano
Thu May 11, 2023 6:09 pm
Forum: CP/M, FLOS and OS related
Topic: appmake +cpm
Replies: 38
Views: 24962

Re: appmake +cpm

and + Visual Technology 1050
by stefano
Thu May 11, 2023 1:57 pm
Forum: CP/M, FLOS and OS related
Topic: Xerox 820 disk format
Replies: 20
Views: 261

Re: Xerox 820 disk format

It is very nice to see the Dallas game run (and play sounds) on the Xerox 820! In theory the x820ii is slightly different, because it the only one supporting the 1bit sound and the 4x4 blocky graphics, but at the moment it is not much an issue, because no working emulators exist for it, I'm not expe...