Re: [M100] DVI + Floppy Emulation

2023-03-01 Thread grima...@gmail.com
I just want to say, I finally replicated your project Jerry!

Everything works great! The only modification I made was to set cskew=1.
Formatting and writing to disk didn’t work correctly until I did that.

After I got that working, I too switched the drive jumpers and got the DVI
to boot off of the Gotek.

Very happy with the results.

Best,
George

On Mon, May 24, 2021 at 6:14 PM Jeffrey Birt  wrote:

> Great info Jerry!
>
>
>
> Jeff Birt
>
>
>
> *From:* M100  *On Behalf Of *Jerry
> Davis
> *Sent:* Monday, May 24, 2021 11:32 AM
> *To:* m...@bitchin100.com
> *Subject:* Re: [M100] DVI + Floppy Emulation
>
>
>
> Yes.  I attached one to my DVI a few weeks ago.
>
>
>
> I purchased a Gotek SFR1M44-U100 from Amazon.  The Gotek is a 3.5" drive
> format.  To mount the Gotek into the 5.25" drive bay that the DVI has I
> also purchased the following:
>
>
>
> (1) Startek 3.5" to 5.25" front bay adapter (Amazon)
>
> (1) Kentek 6" adapter from 4-Pin Male Molex 5.25" drive power connector to
> 4-pin Female 3.5" drive power connector (Amazon)
>
> (1) 34-Pin Card Edge to IDC Connector Adapter - 5.25" to 3.5" Floppy Cable
> (eBay)
>
> (1) Gigastone Z90 32GB USB 3.1 Flash Drive (Amazon)
>
>
>
> The flash drive I purchased is very short.  I didn't want a USB drive
> sticking way out from the front because it gets in the way.  32GB is
> massive overkill in terms of space for disk images but that's what was
> available in a small package for a good price.
>
>
>
> I installed the latest version of "flashfloppy" by Keir Fraser (and many
> other contributors) onto the Gotek using the instructions on the
> flashfloppy Githib Wiki.  The Gotek I received had the Artery chip
> installed which required a special build at first but I believe is now
> supported on the newest builds.  I saw a note on the flashfloppy discussion
> board that folks were having fewer problems with Artery-based Gotek drives
> when using flash drives supporting USB 3.1.  That's why I made sure I
> bought a USB drive with USB 3.1.  That may be the standard today so getting
> USB 3.1 may be unavoidable.
>
>
>
> I loaded the flashfloppy software onto the Gotek using the instructions
> and Youtube links contained in the flashfloppy Github Wiki.  Some Gotek
> hardware versions have to be programmed with a USB-to-TTL cable attached to
> header pins you soldered to the Gotek board, other hardware versions could
> be programmed using only a USB-to-USB cable.  The Gotek hardware is subject
> to change so be sure to check the Wiki for the hardware version you
> receive.  There is a lot of information on Gotek programming and hardware
> upgrades that will help get you going on Youtube.
>
>
>
> To start, I kept the original 180K floppy installed as Drive 0 and the
> Gotek installed as Drive 1.  I copied the DOS system disk over to the Gotek
> and then reversed the drives.  My DVI now boots from the Gotek, and the
> physical floppy drive is available for creating floppy images from physical
> media.  Switching between the system disk and an application disk is done
> by pushing the image selector buttons and cycling through the images on the
> flash drive.
>
>
>
> The hardware upgrades available for the Gotek include adding an LCD
> display and a rotary encoder.  I didn't do any of these as I wanted to make
> sure I could get the stock Gotek running before attempting any
> modifications.  I may go back to these at a later date.
>
>
>
> My FF.CFG which configures flashfloppy features is mostly stock and
> contains the following entries:
>
>
>
> interface = ibmpc
> host = unspecified
> pin02 = nc
> pin34 = nc
> write-protect = no
> side-select-glitch-filter = 0
> track-change = instant
> write-drain = instant
> index-suppression = yes
> head-settle-ms = 12
> motor-delay = ignore
> chgrst = step
> ejected-on-startup = no
> image-on-startup = last
> display-probe-ms = 3000
> autoselect-file-secs = 2
> autoselect-folder-secs = 2
> folder-sort = always
> sort-priority = folders
> nav-mode = default
> nav-loop = yes
> twobutton-action = zero
> rotary = none
> indexed-prefix = "DSKA"
> display-type = auto
> oled-font = 6x13
> oled-contrast = 143
> display-order = default
> display-off-secs = 60
> display-on-activity = yes
> display-scroll-rate = 200
> display-scroll-pause = 2000
> nav-scroll-rate = 80
> nav-scroll-pause = 300
> step-volume = 10
> da-report-version = ""
> extend-image = yes
>
>
>
> My IMG.CFG file which defines the cylinders, heads, and sectors for the
> 180K disk format used by th

Re: [M100] DVI character set

2023-02-25 Thread grima...@gmail.com
Thanks Ken, worked like a charm!

On Sat, Feb 25, 2023 at 5:29 AM B 9  wrote:

> On Fri, Feb 24, 2023 at 12:10 PM Kenneth Pettit 
> wrote:
>
> Or you can look at the active ROWs, COLs addresses
>>
>> M100:
>>ROWS: F63Bh   will be 8 or 25
>>COLS: F63Ch   will be 40 or 80
>>
>> T200:
>>ROWS: EF08H   will be 16 or 25
>>COLS: EF09H   will be 40 or 80
>>
> Ken, that is pretty nifty! Do you know if any other values are ever
> assigned to ROWS or COLS? For example, did the “VIEW 80” Option ROM (which
> showed 60 columns on a Model 100) change COLS to 60?
>
> Also, I’m curious whether that BASIC routine I shared earlier for
> detecting the screen size (?CHR$(27)"Y~~"; : RO=CSRLIN+1: CO=POS(0)+1)
> would have any benefit compared to just reading the values directly.
> Perhaps it might be more portable, but I seem to recall the PC-8201A may
> have had a different name for CSRLIN.
>
> —b9
>


Re: [M100] DVI character set

2023-02-25 Thread B 9
On Fri, Feb 24, 2023 at 12:10 PM Kenneth Pettit  wrote:

Or you can look at the active ROWs, COLs addresses
>
> M100:
>ROWS: F63Bh   will be 8 or 25
>COLS: F63Ch   will be 40 or 80
>
> T200:
>ROWS: EF08H   will be 16 or 25
>COLS: EF09H   will be 40 or 80
>
Ken, that is pretty nifty! Do you know if any other values are ever
assigned to ROWS or COLS? For example, did the “VIEW 80” Option ROM (which
showed 60 columns on a Model 100) change COLS to 60?

Also, I’m curious whether that BASIC routine I shared earlier for detecting
the screen size (?CHR$(27)"Y~~"; : RO=CSRLIN+1: CO=POS(0)+1) would have any
benefit compared to just reading the values directly. Perhaps it might be
more portable, but I seem to recall the PC-8201A may have had a different
name for CSRLIN.

—b9


Re: [M100] DVI character set

2023-02-25 Thread B 9
On Thu, Feb 23, 2023 at 5:37 PM Stephen Adolph twospru...@gmail.com
 wrote:

I'm back at this.
> In the emulator I am working on. Ow, I have to redo the fonts.  I'm free
> to use whatever I want.
>
> So, which one of these fonts is actually used by the dvi?  The 8x8 or the
> 7x8?
>
I don’t have a DVI, but my understanding is that both are used, depending
upon whether you set the display to 40- or 80-columns. The commands WIDTH 40
and WIDTH 80 switch between the two.

Note that the DVI from Radio-Shack doesn’t allow PSET/PRESET to address
individual pixels, so the width difference between the fonts probably
wasn’t seen as a big deal. If I recall correctly, the NEC PC-8201A’s video
interface — which does allow pixel addressing and colors — handles the
problem by always specifying coordinates using a virtual high-resolution
grid which is mapped onto whatever resolution is actually displayed.

—b9


Re: [M100] DVI character set

2023-02-24 Thread Kenneth Pettit

Hey George,

When you execute SCREEN 0 or SCREEN 1, it sets a variable indicating the 
selected screen at the following addresses:


M100:  F638H
T200:   EF06H

This will be 0 for LCD or 1 for DVI.

Or you can look at the active ROWs, COLs addresses

M100:
   ROWS: F63Bh   will be 8 or 25
   COLS: F63Ch   will be 40 or 80

T200:
   ROWS: EF08H   will be 16 or 25
   COLS: EF09H   will be 40 or 80

I don't believe there is a copy of DVI contents in RAM anywhere. For an 
80x25 display, this would be 2000 bytes of data.


Ken

On 2/24/23 8:14 AM, grima...@gmail.com wrote:

Random questions.

1. Is there an easy way to identify from BASIC, a computer which is 
connected to a DVI.
2. Is there a range of memory that I can access from BASIC that 
mirrors the DVI screen contents?


Basically, I've updated Text Sweeper to properly ID the model 200 and 
check the right LCD memory locations, but now I am facing a similar 
issue with the DVI system.


-George

On Fri, Feb 24, 2023 at 11:04 AM Brian K. White  
wrote:


nuthin toit

On 2/24/23 09:27, Stephen Adolph wrote:
> Brian thanks again for posting the ROMs.
> They dropped directly into my new project unmodified!
>
> On Thu, Feb 23, 2023 at 8:36 PM Stephen Adolph
 > wrote:
>
>     I'm back at this.
>     In the emulator I am working on. Ow, I have to redo the
fonts.  I'm
>     free to use whatever I want.
>
>     So, which one of these fonts is actually used by the dvi? 
The 8x8
>     or the 7x8?
>
>
>
>     On Thursday, January 28, 2021, Tom Wilson      > wrote:
>
>         Ooh! There are actually two fonts in the 4K ROM
>
>         Here's the second one
>         image.png
>
>         This is the same font, but with only 7 bits used. I'm
betting
>         this is the same as the internal font on the M100
itself. Here's
>         one of the characters (255) for comparison:
>
>         Bank 0:
>         image.png
>
>         Bank 1:
>         image.png
>
>
>         Tom Wilson
> wilso...@gmail.com 
>         (619)940-6311
>
>
>
>         On Thu, Jan 28, 2021 at 4:09 PM Tom Wilson
         > wrote:
>
>             Hey, the file works with my Commodore font editor! 
=)  I'm
>             totally going to add this as an optional font in my
terminal
>             emulator.
>
>             image.png
>
>
>
>             Tom Wilson
> wilso...@gmail.com 
>             (619)940-6311
>
>
>
>             On Thu, Jan 28, 2021 at 1:53 PM Jim Anderson
>             mailto:jim.ander...@kpu.ca>>
wrote:
>
>                  > -Original Message-
>                  > If you're going to do that much, then I will grab
>                 some more pics with a
>                  > better camera and a tripod so my hand isn't
moving,
>                 and manual focus.
>                  > Maybe even a good straight-on centered shot
without
>                 glare from the room
>                  > lights. Maybe with manual controls I can get
a shot
>                 in the dark without
>                  > the text blooming.
>
>                 You know what, I realize that I went straight to
that
>                 screen photo image because I was looking for a clear
>                 image that had my XX pattern in 80-column
mode...
>                 and it's really not so blurry, but the capture in
>                 "Snapshot_20210127_233755.jpg" is sharper and
does have
>                 the full character set showing.  Even though they're
>                 flanked by square brackets I think I can work
with it.
>                 (the square brackets don't go to the full left
and right
>                 extent of the character cell, that's why I used X.)
>                 Don't worry about going to any trouble for a sharper
>                 screen photo.  For my cleanup/rescaling of the
original
>                 font I've been working off a handheld iphone
photo of my
>                 monitor.
>
>                 I also whipped something up to display the ROM
data as
>                 large block pixels for an absolute reference to the
>                 original intended shapes so I think I've got
everything
>                 I need (except time) :)
>
>
>
>
>
>
>
>                          jim
>

-- 
bkw




Re: [M100] DVI character set

2023-02-24 Thread grima...@gmail.com
Random questions.

1. Is there an easy way to identify from BASIC, a computer which is
connected to a DVI.
2. Is there a range of memory that I can access from BASIC that mirrors the
DVI screen contents?

Basically, I've updated Text Sweeper to properly ID the model 200 and check
the right LCD memory locations, but now I am facing a similar issue with
the DVI system.

-George

On Fri, Feb 24, 2023 at 11:04 AM Brian K. White 
wrote:

> nuthin toit
>
> On 2/24/23 09:27, Stephen Adolph wrote:
> > Brian thanks again for posting the ROMs.
> > They dropped directly into my new project unmodified!
> >
> > On Thu, Feb 23, 2023 at 8:36 PM Stephen Adolph  > > wrote:
> >
> > I'm back at this.
> > In the emulator I am working on. Ow, I have to redo the fonts.  I'm
> > free to use whatever I want.
> >
> > So, which one of these fonts is actually used by the dvi?  The 8x8
> > or the 7x8?
> >
> >
> >
> > On Thursday, January 28, 2021, Tom Wilson  > > wrote:
> >
> > Ooh! There are actually two fonts in the 4K ROM
> >
> > Here's the second one
> > image.png
> >
> > This is the same font, but with only 7 bits used. I'm betting
> > this is the same as the internal font on the M100 itself. Here's
> > one of the characters (255) for comparison:
> >
> > Bank 0:
> > image.png
> >
> > Bank 1:
> > image.png
> >
> >
> > Tom Wilson
> > wilso...@gmail.com 
> > (619)940-6311
> >
> >
> >
> > On Thu, Jan 28, 2021 at 4:09 PM Tom Wilson  > > wrote:
> >
> > Hey, the file works with my Commodore font editor!  =)  I'm
> > totally going to add this as an optional font in my terminal
> > emulator.
> >
> > image.png
> >
> >
> >
> > Tom Wilson
> > wilso...@gmail.com 
> > (619)940-6311
> >
> >
> >
> > On Thu, Jan 28, 2021 at 1:53 PM Jim Anderson
> > mailto:jim.ander...@kpu.ca>> wrote:
> >
> >  > -Original Message-
> >  > If you're going to do that much, then I will grab
> > some more pics with a
> >  > better camera and a tripod so my hand isn't moving,
> > and manual focus.
> >  > Maybe even a good straight-on centered shot without
> > glare from the room
> >  > lights. Maybe with manual controls I can get a shot
> > in the dark without
> >  > the text blooming.
> >
> > You know what, I realize that I went straight to that
> > screen photo image because I was looking for a clear
> > image that had my XX pattern in 80-column mode...
> > and it's really not so blurry, but the capture in
> > "Snapshot_20210127_233755.jpg" is sharper and does have
> > the full character set showing.  Even though they're
> > flanked by square brackets I think I can work with it.
> > (the square brackets don't go to the full left and right
> > extent of the character cell, that's why I used X.)
> > Don't worry about going to any trouble for a sharper
> > screen photo.  For my cleanup/rescaling of the original
> > font I've been working off a handheld iphone photo of my
> > monitor.
> >
> > I also whipped something up to display the ROM data as
> > large block pixels for an absolute reference to the
> > original intended shapes so I think I've got everything
> > I need (except time) :)
> >
> >
> >
> >
> >
> >
> >
> >  jim
> >
>
> --
> bkw
>
>


Re: [M100] DVI character set

2023-02-24 Thread Brian K. White

nuthin toit

On 2/24/23 09:27, Stephen Adolph wrote:

Brian thanks again for posting the ROMs.
They dropped directly into my new project unmodified!

On Thu, Feb 23, 2023 at 8:36 PM Stephen Adolph > wrote:


I'm back at this.
In the emulator I am working on. Ow, I have to redo the fonts.  I'm
free to use whatever I want.

So, which one of these fonts is actually used by the dvi?  The 8x8
or the 7x8?



On Thursday, January 28, 2021, Tom Wilson mailto:wilso...@gmail.com>> wrote:

Ooh! There are actually two fonts in the 4K ROM

Here's the second one
image.png

This is the same font, but with only 7 bits used. I'm betting
this is the same as the internal font on the M100 itself. Here's
one of the characters (255) for comparison:

Bank 0:
image.png

Bank 1:
image.png


Tom Wilson
wilso...@gmail.com 
(619)940-6311



On Thu, Jan 28, 2021 at 4:09 PM Tom Wilson mailto:wilso...@gmail.com>> wrote:

Hey, the file works with my Commodore font editor!  =)  I'm
totally going to add this as an optional font in my terminal
emulator.

image.png



Tom Wilson
wilso...@gmail.com 
(619)940-6311



On Thu, Jan 28, 2021 at 1:53 PM Jim Anderson
mailto:jim.ander...@kpu.ca>> wrote:

 > -Original Message-
 > If you're going to do that much, then I will grab
some more pics with a
 > better camera and a tripod so my hand isn't moving,
and manual focus.
 > Maybe even a good straight-on centered shot without
glare from the room
 > lights. Maybe with manual controls I can get a shot
in the dark without
 > the text blooming.

You know what, I realize that I went straight to that
screen photo image because I was looking for a clear
image that had my XX pattern in 80-column mode...
and it's really not so blurry, but the capture in
"Snapshot_20210127_233755.jpg" is sharper and does have
the full character set showing.  Even though they're
flanked by square brackets I think I can work with it. 
(the square brackets don't go to the full left and right
extent of the character cell, that's why I used X.) 
Don't worry about going to any trouble for a sharper

screen photo.  For my cleanup/rescaling of the original
font I've been working off a handheld iphone photo of my
monitor.

I also whipped something up to display the ROM data as
large block pixels for an absolute reference to the
original intended shapes so I think I've got everything
I need (except time) :)







         jim



--
bkw



Re: [M100] DVI character set

2023-02-24 Thread Stephen Adolph
Brian thanks again for posting the ROMs.
They dropped directly into my new project unmodified!

On Thu, Feb 23, 2023 at 8:36 PM Stephen Adolph  wrote:

> I'm back at this.
> In the emulator I am working on. Ow, I have to redo the fonts.  I'm free
> to use whatever I want.
>
> So, which one of these fonts is actually used by the dvi?  The 8x8 or the
> 7x8?
>
>
>
> On Thursday, January 28, 2021, Tom Wilson  wrote:
>
>> Ooh! There are actually two fonts in the 4K ROM
>>
>> Here's the second one
>> [image: image.png]
>>
>> This is the same font, but with only 7 bits used. I'm betting this is the
>> same as the internal font on the M100 itself. Here's one of the characters
>> (255) for comparison:
>>
>> Bank 0:
>> [image: image.png]
>>
>> Bank 1:
>> [image: image.png]
>>
>>
>> Tom Wilson
>> wilso...@gmail.com
>> (619)940-6311
>>
>>
>>
>> On Thu, Jan 28, 2021 at 4:09 PM Tom Wilson  wrote:
>>
>>> Hey, the file works with my Commodore font editor!  =)  I'm totally
>>> going to add this as an optional font in my terminal emulator.
>>>
>>> [image: image.png]
>>>
>>>
>>>
>>> Tom Wilson
>>> wilso...@gmail.com
>>> (619)940-6311
>>>
>>>
>>>
>>> On Thu, Jan 28, 2021 at 1:53 PM Jim Anderson 
>>> wrote:
>>>
 > -Original Message-
 > If you're going to do that much, then I will grab some more pics with
 a
 > better camera and a tripod so my hand isn't moving, and manual focus.
 > Maybe even a good straight-on centered shot without glare from the
 room
 > lights. Maybe with manual controls I can get a shot in the dark
 without
 > the text blooming.

 You know what, I realize that I went straight to that screen photo
 image because I was looking for a clear image that had my XX pattern
 in 80-column mode... and it's really not so blurry, but the capture in
 "Snapshot_20210127_233755.jpg" is sharper and does have the full character
 set showing.  Even though they're flanked by square brackets I think I can
 work with it.  (the square brackets don't go to the full left and right
 extent of the character cell, that's why I used X.)  Don't worry about
 going to any trouble for a sharper screen photo.  For my cleanup/rescaling
 of the original font I've been working off a handheld iphone photo of my
 monitor.

 I also whipped something up to display the ROM data as large block
 pixels for an absolute reference to the original intended shapes so I think
 I've got everything I need (except time) :)







 jim

>>>


Re: [M100] DVI character set

2023-02-23 Thread Stephen Adolph
I'm back at this.
In the emulator I am working on. Ow, I have to redo the fonts.  I'm free to
use whatever I want.

So, which one of these fonts is actually used by the dvi?  The 8x8 or the
7x8?



On Thursday, January 28, 2021, Tom Wilson  wrote:

> Ooh! There are actually two fonts in the 4K ROM
>
> Here's the second one
> [image: image.png]
>
> This is the same font, but with only 7 bits used. I'm betting this is the
> same as the internal font on the M100 itself. Here's one of the characters
> (255) for comparison:
>
> Bank 0:
> [image: image.png]
>
> Bank 1:
> [image: image.png]
>
>
> Tom Wilson
> wilso...@gmail.com
> (619)940-6311
>
>
>
> On Thu, Jan 28, 2021 at 4:09 PM Tom Wilson  wrote:
>
>> Hey, the file works with my Commodore font editor!  =)  I'm totally going
>> to add this as an optional font in my terminal emulator.
>>
>> [image: image.png]
>>
>>
>>
>> Tom Wilson
>> wilso...@gmail.com
>> (619)940-6311
>>
>>
>>
>> On Thu, Jan 28, 2021 at 1:53 PM Jim Anderson  wrote:
>>
>>> > -Original Message-
>>> > If you're going to do that much, then I will grab some more pics with a
>>> > better camera and a tripod so my hand isn't moving, and manual focus.
>>> > Maybe even a good straight-on centered shot without glare from the room
>>> > lights. Maybe with manual controls I can get a shot in the dark without
>>> > the text blooming.
>>>
>>> You know what, I realize that I went straight to that screen photo image
>>> because I was looking for a clear image that had my XX pattern in
>>> 80-column mode... and it's really not so blurry, but the capture in
>>> "Snapshot_20210127_233755.jpg" is sharper and does have the full character
>>> set showing.  Even though they're flanked by square brackets I think I can
>>> work with it.  (the square brackets don't go to the full left and right
>>> extent of the character cell, that's why I used X.)  Don't worry about
>>> going to any trouble for a sharper screen photo.  For my cleanup/rescaling
>>> of the original font I've been working off a handheld iphone photo of my
>>> monitor.
>>>
>>> I also whipped something up to display the ROM data as large block
>>> pixels for an absolute reference to the original intended shapes so I think
>>> I've got everything I need (except time) :)
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> jim
>>>
>>


Re: [M100] DVI

2022-09-17 Thread Mike Stein
Thanks for sharing; the price sounds reasonable, I don't think it'll take
much to fix that flickering

Mine has two normal 5 1/4 drives although they are in fact two-sided; I
added the second drive myself and when I couldn't find a drive to match the
original TEC drive I installed a pair of Panasonics.

I haven't dug it out for a while but it is indeed pretty clean and although
I haven't used it very much recently I've never had any problems with it.

The 3.5" drives were just a fun experiment to see if they would work
without any modifications; they did indeed, but of course without modifying
the DVI firmware you still only have 180 KB per drive, regardless of
single/double sided or 5 1/4 vs. 3.5"

Nevertheless, if you don't mind being incompatible with anyone else there
may be some slight advantage to using 3.5" diskettes; easier to come by,
easier to store, maybe more reliable dpending on whom you listen to, etc.

Hope you get that flicker sorted and have fun with it!

m


On Sat, Sep 17, 2022 at 8:16 PM Spencer  wrote:

> Hello Mike.
>
> I found it on ebay and paid $140 plus shipping/taxes.
>
> Does your have 2 5 1/4" or a mix of 5 1/4 and 3.5" drives?
>
> Your pics show the unit as really clean.  Did you have to do any repairs
> to it?
>
> Thanks
>
> On Saturday, September 17, 2022 at 02:28:28 PM EDT, Mike Stein <
> mhs.st...@gmail.com> wrote:
>
>
> I did find some pictures from when I was playing with 3.5" drives:
>
> [image: image.jpeg]
> [image: image.jpeg]
> [image: image.jpeg]
>
> On Sat, Sep 17, 2022 at 11:12 AM Spencer  wrote:
>
> Hello Mike.
>
> I actually found an Tandy unit, but the video flickers in and out.  Is
> yours something you did or a Tandy unit? Would you mind sending a pic or
> two?
>
> Thanks!
>
>


Re: [M100] DVI

2022-09-17 Thread Spencer
 Hello Mike.
I found it on ebay and paid $140 plus shipping/taxes.
Does your have 2 5 1/4" or a mix of 5 1/4 and 3.5" drives?
Your pics show the unit as really clean.  Did you have to do any repairs to it?
Thanks
On Saturday, September 17, 2022 at 02:28:28 PM EDT, Mike Stein 
 wrote:  
 
 I did find some pictures from when I was playing with 3.5" drives:

On Sat, Sep 17, 2022 at 11:12 AM Spencer  wrote:

Hello Mike.
I actually found an Tandy unit, but the video flickers in and out.  Is yours 
something you did or a Tandy unit? Would you mind sending a pic or two?
Thanks!
  

Re: [M100] DVI

2022-09-17 Thread Mike Stein
I did find some pictures from when I was playing with 3.5" drives:

[image: image.jpeg]
[image: image.jpeg]
[image: image.jpeg]

On Sat, Sep 17, 2022 at 11:12 AM Spencer  wrote:

> Hello Mike.
>
> I actually found an Tandy unit, but the video flickers in and out.  Is
> yours something you did or a Tandy unit? Would you mind sending a pic or
> two?
>
> Thanks!
>


[M100] DVI

2022-09-17 Thread Spencer
Hello Mike.
I actually found an Tandy unit, but the video flickers in and out.  Is yours 
something you did or a Tandy unit? Would you mind sending a pic or two?
Thanks!

[M100] DVI 200

2022-05-23 Thread Gregory McGill
Someone on Atariage asks what software supports the DVI on the model 200?


Re: [M100] DVI Recap Question

2022-01-25 Thread birt_j
You will almost never find a vintage cap part number via a web search.
Typically, I will measure the can height, diameter and lead pitch. That
information along with the uF, voltage, etc. will be enough to find a
suitable modern part. 

 

Jeff Birt

 

From: M100  On Behalf Of Dan Eicher
Sent: Tuesday, January 25, 2022 3:47 PM
To: m100@lists.bitchin100.com
Subject: [M100] DVI Recap Question

 

Hi, 

 

 I'm looking to finish ordering parts to recap the power supply on my DVI
26-3806.

 

 Jerry has already given me the first three hard parts.

 

 I have four left on my needy list.

 

 I found part numbers in the 26-3806 Service Manual.

 

Part   Description Manufacturer Part Number

 C102Cap, Elect 1µF/50V/+-20%   CEVG010A3N

 C105Cap, Elect 22µF/16V/+-20% CEVD220A3N

 C107Cap, Elect 1000µF/10V/+-20%  CEAC102A3N

 C108Cap, Elect 220µF/10V/+-20%CEVC221A3N

 

Can someone point me to a mouser part number that would be compatible?

 

I suspect part of the part number might specify the height of the device and
spacing of through holes?

 

Even Google, who knows everything, returns nothing in regard to the
manufacturer's part number.

 

Thanks in advance for your help. 

 



Re: [M100] DVI Recap Question

2022-01-25 Thread Jerry Davis
Here's the ones I ordered from Mouser when I recapped mine:

667-EEU-FK1C102
Mfr. #: EEU-FK1C102
Desc.: Aluminum Electrolytic Capacitors - Radial Leaded Aluminum
Electrolytic Capacitors - Radial Leaded 16VDC 1000uF 20% AEC-Q200

Mouser #: 871-B41856C6227M000
Mfr. #: B41856C6227M000
Desc.: Aluminum Electrolytic Capacitors - Radial Leaded Aluminum
Electrolytic Capacitors - Radial Leaded 50VDC 220uF 20% STD Leads

The 1uF and 22uF were replaced with general purpose capacitors I had in
inventory.  I don't have the part numbers for them.  Use the Mouser filter
to search for caps with the approximate physical size.  Just about anything
that fits will work (same value and voltage).

The recapped power supply was "burned in" for 48 hours under load just to
make sure nothing else was waiting to fail.  All DC voltages and ripple
voltages on C107and C108 checked good under test load and with the actual
DVI board and drives attached.  It has been running for almost a year off
and on since.

Jerry

On Tue, Jan 25, 2022 at 3:47 PM Dan Eicher  wrote:

> Hi,
>
>  I'm looking to finish ordering parts to recap the power supply on my DVI
> 26-3806.
>
>  Jerry has already given me the first three hard parts.
>
>  I have four left on my needy list.
>
>  I found part numbers in the 26-3806 Service Manual.
>
> Part   Description Manufacturer Part Number
>  C102Cap, Elect 1µF/50V/+-20%   CEVG010A3N
>  C105Cap, Elect 22µF/16V/+-20% CEVD220A3N
>  C107Cap, Elect 1000µF/10V/+-20%  CEAC102A3N
>  C108Cap, Elect 220µF/10V/+-20%CEVC221A3N
>
> Can someone point me to a mouser part number that would be compatible?
>
> I suspect part of the part number might specify the height of the device
> and spacing of through holes?
>
> Even Google, who knows everything, returns nothing in regard to the
> manufacturer's part number.
>
> Thanks in advance for your help.
>
>


[M100] DVI Recap Question

2022-01-25 Thread Dan Eicher
Hi,

 I'm looking to finish ordering parts to recap the power supply on my DVI 
26-3806.

 Jerry has already given me the first three hard parts.

 I have four left on my needy list.

 I found part numbers in the 26-3806 Service Manual.

Part   Description Manufacturer Part Number
 C102Cap, Elect 1µF/50V/+-20%   CEVG010A3N
 C105Cap, Elect 22µF/16V/+-20% CEVD220A3N
 C107Cap, Elect 1000µF/10V/+-20%  CEAC102A3N
 C108Cap, Elect 220µF/10V/+-20%CEVC221A3N

Can someone point me to a mouser part number that would be compatible?

I suspect part of the part number might specify the height of the device and 
spacing of through holes?

Even Google, who knows everything, returns nothing in regard to the 
manufacturer's part number.

Thanks in advance for your help.



Re: [M100] DVI + Floppy Emulation

2021-05-24 Thread Jeffrey Birt
Great info Jerry!

 

Jeff Birt

 

From: M100  On Behalf Of Jerry Davis
Sent: Monday, May 24, 2021 11:32 AM
To: m...@bitchin100.com
Subject: Re: [M100] DVI + Floppy Emulation

 

Yes.  I attached one to my DVI a few weeks ago.

 

I purchased a Gotek SFR1M44-U100 from Amazon.  The Gotek is a 3.5" drive 
format.  To mount the Gotek into the 5.25" drive bay that the DVI has I also 
purchased the following:

 

(1) Startek 3.5" to 5.25" front bay adapter (Amazon)

(1) Kentek 6" adapter from 4-Pin Male Molex 5.25" drive power connector to 
4-pin Female 3.5" drive power connector (Amazon)

(1) 34-Pin Card Edge to IDC Connector Adapter - 5.25" to 3.5" Floppy Cable 
(eBay)

(1) Gigastone Z90 32GB USB 3.1 Flash Drive (Amazon)

 

The flash drive I purchased is very short.  I didn't want a USB drive sticking 
way out from the front because it gets in the way.  32GB is massive overkill in 
terms of space for disk images but that's what was available in a small package 
for a good price.

 

I installed the latest version of "flashfloppy" by Keir Fraser (and many other 
contributors) onto the Gotek using the instructions on the flashfloppy Githib 
Wiki.  The Gotek I received had the Artery chip installed which required a 
special build at first but I believe is now supported on the newest builds.  I 
saw a note on the flashfloppy discussion board that folks were having fewer 
problems with Artery-based Gotek drives when using flash drives supporting USB 
3.1.  That's why I made sure I bought a USB drive with USB 3.1.  That may be 
the standard today so getting USB 3.1 may be unavoidable.

 

I loaded the flashfloppy software onto the Gotek using the instructions and 
Youtube links contained in the flashfloppy Github Wiki.  Some Gotek hardware 
versions have to be programmed with a USB-to-TTL cable attached to header pins 
you soldered to the Gotek board, other hardware versions could be programmed 
using only a USB-to-USB cable.  The Gotek hardware is subject to change so be 
sure to check the Wiki for the hardware version you receive.  There is a lot of 
information on Gotek programming and hardware upgrades that will help get you 
going on Youtube.

 

To start, I kept the original 180K floppy installed as Drive 0 and the Gotek 
installed as Drive 1.  I copied the DOS system disk over to the Gotek and then 
reversed the drives.  My DVI now boots from the Gotek, and the physical floppy 
drive is available for creating floppy images from physical media.  Switching 
between the system disk and an application disk is done by pushing the image 
selector buttons and cycling through the images on the flash drive.

 

The hardware upgrades available for the Gotek include adding an LCD display and 
a rotary encoder.  I didn't do any of these as I wanted to make sure I could 
get the stock Gotek running before attempting any modifications.  I may go back 
to these at a later date. 

 

My FF.CFG which configures flashfloppy features is mostly stock and contains 
the following entries:

 

interface = ibmpc
host = unspecified
pin02 = nc
pin34 = nc
write-protect = no
side-select-glitch-filter = 0
track-change = instant
write-drain = instant
index-suppression = yes
head-settle-ms = 12
motor-delay = ignore
chgrst = step
ejected-on-startup = no
image-on-startup = last
display-probe-ms = 3000
autoselect-file-secs = 2
autoselect-folder-secs = 2
folder-sort = always
sort-priority = folders
nav-mode = default
nav-loop = yes
twobutton-action = zero
rotary = none
indexed-prefix = "DSKA"
display-type = auto
oled-font = 6x13
oled-contrast = 143
display-order = default
display-off-secs = 60
display-on-activity = yes
display-scroll-rate = 200
display-scroll-pause = 2000
nav-scroll-rate = 80
nav-scroll-pause = 300
step-volume = 10
da-report-version = ""
extend-image = yes

 

My IMG.CFG file which defines the cylinders, heads, and sectors for the 180K 
disk format used by the DVI looks like:

 

[*.m100dvi.img]
cyls=40
heads=1
secs=18
bps=256
h=0

 

The configuration above works for me but could probably be tuned for better 
performance.  I was able to format virtual disk images, write files to the 
images, and read files from the images with no issues.  The DVI DOS copy and 
backup utilities all worked as expected.

 

Hope this helps you.

 

Jerry

 

 

On Sun, May 23, 2021, 7:21 AM Dan Eicher mailto:daneiche...@hotmail.com> > wrote:

Anyone using a GoTek or HxC floppy emulator with a Tandy DVI?



Re: [M100] DVI + Floppy Emulation

2021-05-24 Thread Jerry Davis
Yes.  I attached one to my DVI a few weeks ago.

I purchased a Gotek SFR1M44-U100 from Amazon.  The Gotek is a 3.5" drive
format.  To mount the Gotek into the 5.25" drive bay that the DVI has I
also purchased the following:

(1) Startek 3.5" to 5.25" front bay adapter (Amazon)
(1) Kentek 6" adapter from 4-Pin Male Molex 5.25" drive power connector to
4-pin Female 3.5" drive power connector (Amazon)
(1) 34-Pin Card Edge to IDC Connector Adapter - 5.25" to 3.5" Floppy Cable
(eBay)
(1) Gigastone Z90 32GB USB 3.1 Flash Drive (Amazon)

The flash drive I purchased is very short.  I didn't want a USB drive
sticking way out from the front because it gets in the way.  32GB is
massive overkill in terms of space for disk images but that's what was
available in a small package for a good price.

I installed the latest version of "flashfloppy" by Keir Fraser (and many
other contributors) onto the Gotek using the instructions on the
flashfloppy Githib Wiki.  The Gotek I received had the Artery chip
installed which required a special build at first but I believe is now
supported on the newest builds.  I saw a note on the flashfloppy discussion
board that folks were having fewer problems with Artery-based Gotek drives
when using flash drives supporting USB 3.1.  That's why I made sure I
bought a USB drive with USB 3.1.  That may be the standard today so getting
USB 3.1 may be unavoidable.

I loaded the flashfloppy software onto the Gotek using the instructions and
Youtube links contained in the flashfloppy Github Wiki.  Some Gotek
hardware versions have to be programmed with a USB-to-TTL cable attached to
header pins you soldered to the Gotek board, other hardware versions could
be programmed using only a USB-to-USB cable.  The Gotek hardware is subject
to change so be sure to check the Wiki for the hardware version you
receive.  There is a lot of information on Gotek programming and hardware
upgrades that will help get you going on Youtube.

To start, I kept the original 180K floppy installed as Drive 0 and the
Gotek installed as Drive 1.  I copied the DOS system disk over to the Gotek
and then reversed the drives.  My DVI now boots from the Gotek, and the
physical floppy drive is available for creating floppy images from physical
media.  Switching between the system disk and an application disk is done
by pushing the image selector buttons and cycling through the images on the
flash drive.

The hardware upgrades available for the Gotek include adding an LCD display
and a rotary encoder.  I didn't do any of these as I wanted to make sure I
could get the stock Gotek running before attempting any modifications.  I
may go back to these at a later date.

My FF.CFG which configures flashfloppy features is mostly stock and
contains the following entries:

interface = ibmpc
host = unspecified
pin02 = nc
pin34 = nc
write-protect = no
side-select-glitch-filter = 0
track-change = instant
write-drain = instant
index-suppression = yes
head-settle-ms = 12
motor-delay = ignore
chgrst = step
ejected-on-startup = no
image-on-startup = last
display-probe-ms = 3000
autoselect-file-secs = 2
autoselect-folder-secs = 2
folder-sort = always
sort-priority = folders
nav-mode = default
nav-loop = yes
twobutton-action = zero
rotary = none
indexed-prefix = "DSKA"
display-type = auto
oled-font = 6x13
oled-contrast = 143
display-order = default
display-off-secs = 60
display-on-activity = yes
display-scroll-rate = 200
display-scroll-pause = 2000
nav-scroll-rate = 80
nav-scroll-pause = 300
step-volume = 10
da-report-version = ""
extend-image = yes

My IMG.CFG file which defines the cylinders, heads, and sectors for the
180K disk format used by the DVI looks like:

[*.m100dvi.img]
cyls=40
heads=1
secs=18
bps=256
h=0

The configuration above works for me but could probably be tuned for better
performance.  I was able to format virtual disk images, write files to the
images, and read files from the images with no issues.  The DVI DOS copy
and backup utilities all worked as expected.

Hope this helps you.

Jerry


On Sun, May 23, 2021, 7:21 AM Dan Eicher  wrote:

> Anyone using a GoTek or HxC floppy emulator with a Tandy DVI?
>


Re: [M100] DVI + Floppy Emulation

2021-05-23 Thread Gregory McGill
Yes it's been done

On Sun, May 23, 2021, 5:21 AM Dan Eicher  wrote:

> Anyone using a GoTek or HxC floppy emulator with a Tandy DVI?
>


[M100] DVI + Floppy Emulation

2021-05-23 Thread Dan Eicher
Anyone using a GoTek or HxC floppy emulator with a Tandy DVI?


Re: [M100] M100 DVI cover panel

2021-04-15 Thread Brian White
Nice, thank you.

bkw

On Thu, Apr 15, 2021, 7:20 PM Peter Noeth  wrote:

> I fixed my Thingiverse files for the Model 100 Option ROM Covers. When I
> accessed them, all the notes and instructions were missing. Thingiverse
> must have had a data crash and lost it.
>
> The STL files are in millimeters, which seems the default of slicers. The
> finished dimensions are now listed in the summary sectionals are the basic
> settings I used.
>
> Good Luck!
>
> Regards,
>
> Peter
>
>>
>> Message: 1
>> Date: Mon, 12 Apr 2021 17:55:05 -0700
>> From: Peter Noeth 
>> To: Model 100 Discussion 
>> Subject: Re: [M100] M100 DVI cover panel
>> Message-ID:
>> > hw0g4...@mail.gmail.com>
>> Content-Type: text/plain; charset="utf-8"
>>
>> Scale all dimensions by 25.4. It was done in "AutoCAD units". If your
>> slicer is expecting millimeters, then it will be too small. STL files do
>> not include a "units=xxx" command. There is a note in the Thing about
>> this.
>> When I get some time, I will convert to 1:1 scale in millimeters, which
>> seem to be what other slicers use as default (mine is set to "inches" so I
>> don't have any problem).
>>
>> Regards,
>>
>> Peter
>>
>> >
>> > Message: 5
>> > Date: Sun, 11 Apr 2021 21:51:42 -0400
>> > From: "Brian K. White" 
>> > To: m...@bitchin100.com
>> > Subject: Re: [M100] M100 DVI cover panel
>> > Message-ID: 
>> > Content-Type: text/plain; charset=utf-8; format=flowed
>> >
>> > On 4/11/21 5:11 PM, James Zeun wrote:
>> > > Does anyone know what the dimensions should be for this DVI cable
>> > > cover panel?
>> > >
>> > >
>> >
>> https://www.thingiverse.com/thing:4616079?fbclid=IwAR2HDDXRl06ow3DkbfWGutJGhVC6RFW9hzy9PIJUMKAi7IttJ8jZXLVyxWo
>> > > <
>> >
>> https://www.thingiverse.com/thing:4616079?fbclid=IwAR2HDDXRl06ow3DkbfWGutJGhVC6RFW9hzy9PIJUMKAi7IttJ8jZXLVyxWo
>> > >
>> > >
>> > >
>> >
>> >
>> > Good question. The STL file is somehow scaled wrong or drawn in units of
>> > feet or even yards or something.
>> >
>> > Even when I load it in FreeCAD with the units set to inches, the part
>> > comes out with dimensions like 0.1205 inches on the longest side, which
>> > is ridiculous.
>> >
>> > Measuring a real cover:
>> > The main rectangle is 77.7mm x 57.8mm
>> > Maybe you can figure out how to scale the model correctly based on that
>> > to get all the other dims.
>> >
>> > If you're drawing a new model from scratch, a 40-pin ribbon cable is
>> > 51mm wide, make the slot whatever you want based off that starting
>> point.
>> > There's no immediate lip or other obstruction on the edge of the opening
>> > where the ribbon cable needs to come out, so the notch for the cable
>> > doesn't have to be any particular depth. 3 or more mm should be fine.
>> >
>> > The two rear tabs (not on the side with the finger pull)
>> > 4.04mm wide each, 59.9 mm apart inside edge to inside, 3.0mm stick out,
>> > 1.6mm thick, resting on the bottom (inside) surface not extending the
>> > main flat rectangle.
>> >
>> > The front tabs, on the side with the finger pull
>> > 6.06mm wide each, 43.85mm apart inside edge to inside edge
>> > The hook part is complicated to describe without a drawing. The part
>> > that hooks in front only sticks out about 0.5mm and starts about 1.3mm
>> > off the bottom (inside) surface of the main flat part.
>> >
>> > --
>> > bkw
>>
>>


Re: [M100] M100 DVI cover panel

2021-04-15 Thread Peter Noeth
I fixed my Thingiverse files for the Model 100 Option ROM Covers. When I
accessed them, all the notes and instructions were missing. Thingiverse
must have had a data crash and lost it.

The STL files are in millimeters, which seems the default of slicers. The
finished dimensions are now listed in the summary sectionals are the basic
settings I used.

Good Luck!

Regards,

Peter

>
> Message: 1
> Date: Mon, 12 Apr 2021 17:55:05 -0700
> From: Peter Noeth 
> To: Model 100 Discussion 
> Subject: Re: [M100] M100 DVI cover panel
> Message-ID:
>  hw0g4...@mail.gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> Scale all dimensions by 25.4. It was done in "AutoCAD units". If your
> slicer is expecting millimeters, then it will be too small. STL files do
> not include a "units=xxx" command. There is a note in the Thing about this.
> When I get some time, I will convert to 1:1 scale in millimeters, which
> seem to be what other slicers use as default (mine is set to "inches" so I
> don't have any problem).
>
> Regards,
>
> Peter
>
> >
> > Message: 5
> > Date: Sun, 11 Apr 2021 21:51:42 -0400
> > From: "Brian K. White" 
> > To: m...@bitchin100.com
> > Subject: Re: [M100] M100 DVI cover panel
> > Message-ID: 
> > Content-Type: text/plain; charset=utf-8; format=flowed
> >
> > On 4/11/21 5:11 PM, James Zeun wrote:
> > > Does anyone know what the dimensions should be for this DVI cable
> > > cover panel?
> > >
> > >
> >
> https://www.thingiverse.com/thing:4616079?fbclid=IwAR2HDDXRl06ow3DkbfWGutJGhVC6RFW9hzy9PIJUMKAi7IttJ8jZXLVyxWo
> > > <
> >
> https://www.thingiverse.com/thing:4616079?fbclid=IwAR2HDDXRl06ow3DkbfWGutJGhVC6RFW9hzy9PIJUMKAi7IttJ8jZXLVyxWo
> > >
> > >
> > >
> >
> >
> > Good question. The STL file is somehow scaled wrong or drawn in units of
> > feet or even yards or something.
> >
> > Even when I load it in FreeCAD with the units set to inches, the part
> > comes out with dimensions like 0.1205 inches on the longest side, which
> > is ridiculous.
> >
> > Measuring a real cover:
> > The main rectangle is 77.7mm x 57.8mm
> > Maybe you can figure out how to scale the model correctly based on that
> > to get all the other dims.
> >
> > If you're drawing a new model from scratch, a 40-pin ribbon cable is
> > 51mm wide, make the slot whatever you want based off that starting point.
> > There's no immediate lip or other obstruction on the edge of the opening
> > where the ribbon cable needs to come out, so the notch for the cable
> > doesn't have to be any particular depth. 3 or more mm should be fine.
> >
> > The two rear tabs (not on the side with the finger pull)
> > 4.04mm wide each, 59.9 mm apart inside edge to inside, 3.0mm stick out,
> > 1.6mm thick, resting on the bottom (inside) surface not extending the
> > main flat rectangle.
> >
> > The front tabs, on the side with the finger pull
> > 6.06mm wide each, 43.85mm apart inside edge to inside edge
> > The hook part is complicated to describe without a drawing. The part
> > that hooks in front only sticks out about 0.5mm and starts about 1.3mm
> > off the bottom (inside) surface of the main flat part.
> >
> > --
> > bkw
>
>


Re: [M100] M100 DVI cover panel

2021-04-12 Thread Jeffrey Birt
>>Good question. The STL file is somehow scaled wrong or drawn in units of feet 
>>or even yards or something. Even when I load it in FreeCAD with the units set 
>>to inches, the part comes out with dimensions like 0.1205 inches on the 
>>longest side, which is ridiculous.

There are some 'interesting' modeling programs out there that do a very odd job 
at exporting STL files. I see this time to time with a STL file a student sends 
me. Since a STL file contains no scaling or units data there is no way to tell 
how it was exported. A month or so ago a student sent me a file and after some 
email exchanges they figured out I needed to scale it by 3.7 or something 
stupid to get it to come out the correct size.

Jeff Birt







Re: [M100] M100 DVI cover panel

2021-04-11 Thread Jesse Lafleur
I'm pretty impressed with how many thingiverse M100 items there are!
I would have loved to see that case top completed however!

I am very tempted to print out some of these items this week just to try
them out :)

I really like the DB25 serial connector enclosure, it gives me an idea...

On Sun, Apr 11, 2021 at 5:11 PM James Zeun  wrote:

> Does anyone know what the dimensions should be for this DVI cable cover
> panel?
>
>
> https://www.thingiverse.com/thing:4616079?fbclid=IwAR2HDDXRl06ow3DkbfWGutJGhVC6RFW9hzy9PIJUMKAi7IttJ8jZXLVyxWo
>
>
>


Re: [M100] M100 DVI cover panel

2021-04-11 Thread Brian K. White

On 4/11/21 5:11 PM, James Zeun wrote:
Does anyone know what the dimensions should be for this DVI cable 
cover panel?


https://www.thingiverse.com/thing:4616079?fbclid=IwAR2HDDXRl06ow3DkbfWGutJGhVC6RFW9hzy9PIJUMKAi7IttJ8jZXLVyxWo 







Good question. The STL file is somehow scaled wrong or drawn in units of 
feet or even yards or something.


Even when I load it in FreeCAD with the units set to inches, the part 
comes out with dimensions like 0.1205 inches on the longest side, which 
is ridiculous.


Measuring a real cover:
The main rectangle is 77.7mm x 57.8mm
Maybe you can figure out how to scale the model correctly based on that 
to get all the other dims.


If you're drawing a new model from scratch, a 40-pin ribbon cable is 
51mm wide, make the slot whatever you want based off that starting point.
There's no immediate lip or other obstruction on the edge of the opening 
where the ribbon cable needs to come out, so the notch for the cable 
doesn't have to be any particular depth. 3 or more mm should be fine.


The two rear tabs (not on the side with the finger pull)
4.04mm wide each, 59.9 mm apart inside edge to inside, 3.0mm stick out, 
1.6mm thick, resting on the bottom (inside) surface not extending the 
main flat rectangle.


The front tabs, on the side with the finger pull
6.06mm wide each, 43.85mm apart inside edge to inside edge
The hook part is complicated to describe without a drawing. The part 
that hooks in front only sticks out about 0.5mm and starts about 1.3mm 
off the bottom (inside) surface of the main flat part.


--
bkw


[M100] M100 DVI cover panel

2021-04-11 Thread James Zeun
Does anyone know what the dimensions should be for this DVI cable cover
panel?

https://www.thingiverse.com/thing:4616079?fbclid=IwAR2HDDXRl06ow3DkbfWGutJGhVC6RFW9hzy9PIJUMKAi7IttJ8jZXLVyxWo


Re: [M100] DVI character set

2021-01-28 Thread C. Magaret
If you end up making this as an actual font, I would love to get a copy.

Cheers,
CAM

> On Jan 28, 2021, at 16:09, Tom Wilson  wrote:
> 
> Hey, the file works with my Commodore font editor!  =)  I'm totally going to 
> add this as an optional font in my terminal emulator. 
> 
> 
> 
> 
> 
> Tom Wilson
> wilso...@gmail.com
> (619)940-6311 
> 
> 
> 
> On Thu, Jan 28, 2021 at 1:53 PM Jim Anderson  wrote:
> > -Original Message-
> > If you're going to do that much, then I will grab some more pics with a
> > better camera and a tripod so my hand isn't moving, and manual focus.
> > Maybe even a good straight-on centered shot without glare from the room
> > lights. Maybe with manual controls I can get a shot in the dark without
> > the text blooming.
> 
> You know what, I realize that I went straight to that screen photo image 
> because I was looking for a clear image that had my XX pattern in 
> 80-column mode... and it's really not so blurry, but the capture in 
> "Snapshot_20210127_233755.jpg" is sharper and does have the full character 
> set showing.  Even though they're flanked by square brackets I think I can 
> work with it.  (the square brackets don't go to the full left and right 
> extent of the character cell, that's why I used X.)  Don't worry about going 
> to any trouble for a sharper screen photo.  For my cleanup/rescaling of the 
> original font I've been working off a handheld iphone photo of my monitor.
> 
> I also whipped something up to display the ROM data as large block pixels for 
> an absolute reference to the original intended shapes so I think I've got 
> everything I need (except time) :)
> 
> 
> 
> 
> 
> 
> 
> jim



Re: [M100] DVI character set

2021-01-28 Thread Tom Wilson
Ooh! There are actually two fonts in the 4K ROM

Here's the second one
[image: image.png]

This is the same font, but with only 7 bits used. I'm betting this is the
same as the internal font on the M100 itself. Here's one of the characters
(255) for comparison:

Bank 0:
[image: image.png]

Bank 1:
[image: image.png]


Tom Wilson
wilso...@gmail.com
(619)940-6311



On Thu, Jan 28, 2021 at 4:09 PM Tom Wilson  wrote:

> Hey, the file works with my Commodore font editor!  =)  I'm totally going
> to add this as an optional font in my terminal emulator.
>
> [image: image.png]
>
>
>
> Tom Wilson
> wilso...@gmail.com
> (619)940-6311
>
>
>
> On Thu, Jan 28, 2021 at 1:53 PM Jim Anderson  wrote:
>
>> > -Original Message-
>> > If you're going to do that much, then I will grab some more pics with a
>> > better camera and a tripod so my hand isn't moving, and manual focus.
>> > Maybe even a good straight-on centered shot without glare from the room
>> > lights. Maybe with manual controls I can get a shot in the dark without
>> > the text blooming.
>>
>> You know what, I realize that I went straight to that screen photo image
>> because I was looking for a clear image that had my XX pattern in
>> 80-column mode... and it's really not so blurry, but the capture in
>> "Snapshot_20210127_233755.jpg" is sharper and does have the full character
>> set showing.  Even though they're flanked by square brackets I think I can
>> work with it.  (the square brackets don't go to the full left and right
>> extent of the character cell, that's why I used X.)  Don't worry about
>> going to any trouble for a sharper screen photo.  For my cleanup/rescaling
>> of the original font I've been working off a handheld iphone photo of my
>> monitor.
>>
>> I also whipped something up to display the ROM data as large block pixels
>> for an absolute reference to the original intended shapes so I think I've
>> got everything I need (except time) :)
>>
>>
>>
>>
>>
>>
>>
>> jim
>>
>


Re: [M100] DVI character set

2021-01-28 Thread Brian White
oh right. I thought you were making a standalone font.

On Thu, Jan 28, 2021, 9:03 PM Tom Wilson  wrote:

> It doesn't matter - all that actually matters is the format the terminal
> firmware expects in the font file. The terminal will decide the aspect
> ratio of the pixels based on the number of columns and rows and the display
> resolution.
>
>
> Tom Wilson
> wilso...@gmail.com
> (619)940-6311
>
>
>
> On Thu, Jan 28, 2021 at 4:34 PM Brian White  wrote:
>
>> The rom bit patterns are only 1/2 the story. The other half is the shape
>> of a pixel, which probably isn't square.
>>
>> On Thu, Jan 28, 2021, 4:53 PM Jim Anderson  wrote:
>>
>>> > -Original Message-
>>> > If you're going to do that much, then I will grab some more pics with a
>>> > better camera and a tripod so my hand isn't moving, and manual focus.
>>> > Maybe even a good straight-on centered shot without glare from the room
>>> > lights. Maybe with manual controls I can get a shot in the dark without
>>> > the text blooming.
>>>
>>> You know what, I realize that I went straight to that screen photo image
>>> because I was looking for a clear image that had my XX pattern in
>>> 80-column mode... and it's really not so blurry, but the capture in
>>> "Snapshot_20210127_233755.jpg" is sharper and does have the full character
>>> set showing.  Even though they're flanked by square brackets I think I can
>>> work with it.  (the square brackets don't go to the full left and right
>>> extent of the character cell, that's why I used X.)  Don't worry about
>>> going to any trouble for a sharper screen photo.  For my cleanup/rescaling
>>> of the original font I've been working off a handheld iphone photo of my
>>> monitor.
>>>
>>> I also whipped something up to display the ROM data as large block
>>> pixels for an absolute reference to the original intended shapes so I think
>>> I've got everything I need (except time) :)
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> jim
>>>
>>


Re: [M100] DVI character set

2021-01-28 Thread Tom Wilson
It doesn't matter - all that actually matters is the format the terminal
firmware expects in the font file. The terminal will decide the aspect
ratio of the pixels based on the number of columns and rows and the display
resolution.


Tom Wilson
wilso...@gmail.com
(619)940-6311



On Thu, Jan 28, 2021 at 4:34 PM Brian White  wrote:

> The rom bit patterns are only 1/2 the story. The other half is the shape
> of a pixel, which probably isn't square.
>
> On Thu, Jan 28, 2021, 4:53 PM Jim Anderson  wrote:
>
>> > -Original Message-
>> > If you're going to do that much, then I will grab some more pics with a
>> > better camera and a tripod so my hand isn't moving, and manual focus.
>> > Maybe even a good straight-on centered shot without glare from the room
>> > lights. Maybe with manual controls I can get a shot in the dark without
>> > the text blooming.
>>
>> You know what, I realize that I went straight to that screen photo image
>> because I was looking for a clear image that had my XX pattern in
>> 80-column mode... and it's really not so blurry, but the capture in
>> "Snapshot_20210127_233755.jpg" is sharper and does have the full character
>> set showing.  Even though they're flanked by square brackets I think I can
>> work with it.  (the square brackets don't go to the full left and right
>> extent of the character cell, that's why I used X.)  Don't worry about
>> going to any trouble for a sharper screen photo.  For my cleanup/rescaling
>> of the original font I've been working off a handheld iphone photo of my
>> monitor.
>>
>> I also whipped something up to display the ROM data as large block pixels
>> for an absolute reference to the original intended shapes so I think I've
>> got everything I need (except time) :)
>>
>>
>>
>>
>>
>>
>>
>> jim
>>
>


Re: [M100] DVI character set

2021-01-28 Thread Brian White
The rom bit patterns are only 1/2 the story. The other half is the shape of
a pixel, which probably isn't square.

On Thu, Jan 28, 2021, 4:53 PM Jim Anderson  wrote:

> > -Original Message-
> > If you're going to do that much, then I will grab some more pics with a
> > better camera and a tripod so my hand isn't moving, and manual focus.
> > Maybe even a good straight-on centered shot without glare from the room
> > lights. Maybe with manual controls I can get a shot in the dark without
> > the text blooming.
>
> You know what, I realize that I went straight to that screen photo image
> because I was looking for a clear image that had my XX pattern in
> 80-column mode... and it's really not so blurry, but the capture in
> "Snapshot_20210127_233755.jpg" is sharper and does have the full character
> set showing.  Even though they're flanked by square brackets I think I can
> work with it.  (the square brackets don't go to the full left and right
> extent of the character cell, that's why I used X.)  Don't worry about
> going to any trouble for a sharper screen photo.  For my cleanup/rescaling
> of the original font I've been working off a handheld iphone photo of my
> monitor.
>
> I also whipped something up to display the ROM data as large block pixels
> for an absolute reference to the original intended shapes so I think I've
> got everything I need (except time) :)
>
>
>
>
>
>
>
> jim
>


Re: [M100] DVI character set

2021-01-28 Thread Tom Wilson
Hey, the file works with my Commodore font editor!  =)  I'm totally going
to add this as an optional font in my terminal emulator.

[image: image.png]



Tom Wilson
wilso...@gmail.com
(619)940-6311



On Thu, Jan 28, 2021 at 1:53 PM Jim Anderson  wrote:

> > -Original Message-
> > If you're going to do that much, then I will grab some more pics with a
> > better camera and a tripod so my hand isn't moving, and manual focus.
> > Maybe even a good straight-on centered shot without glare from the room
> > lights. Maybe with manual controls I can get a shot in the dark without
> > the text blooming.
>
> You know what, I realize that I went straight to that screen photo image
> because I was looking for a clear image that had my XX pattern in
> 80-column mode... and it's really not so blurry, but the capture in
> "Snapshot_20210127_233755.jpg" is sharper and does have the full character
> set showing.  Even though they're flanked by square brackets I think I can
> work with it.  (the square brackets don't go to the full left and right
> extent of the character cell, that's why I used X.)  Don't worry about
> going to any trouble for a sharper screen photo.  For my cleanup/rescaling
> of the original font I've been working off a handheld iphone photo of my
> monitor.
>
> I also whipped something up to display the ROM data as large block pixels
> for an absolute reference to the original intended shapes so I think I've
> got everything I need (except time) :)
>
>
>
>
>
>
>
> jim
>


Re: [M100] DVI character set

2021-01-28 Thread Jim Anderson
> -Original Message-
> If you're going to do that much, then I will grab some more pics with a
> better camera and a tripod so my hand isn't moving, and manual focus.
> Maybe even a good straight-on centered shot without glare from the room
> lights. Maybe with manual controls I can get a shot in the dark without
> the text blooming.

You know what, I realize that I went straight to that screen photo image 
because I was looking for a clear image that had my XX pattern in 
80-column mode... and it's really not so blurry, but the capture in 
"Snapshot_20210127_233755.jpg" is sharper and does have the full character set 
showing.  Even though they're flanked by square brackets I think I can work 
with it.  (the square brackets don't go to the full left and right extent of 
the character cell, that's why I used X.)  Don't worry about going to any 
trouble for a sharper screen photo.  For my cleanup/rescaling of the original 
font I've been working off a handheld iphone photo of my monitor.

I also whipped something up to display the ROM data as large block pixels for 
an absolute reference to the original intended shapes so I think I've got 
everything I need (except time) :)







jim


Re: [M100] DVI character set

2021-01-28 Thread Brian K. White

On 1/28/21 1:17 PM, Jim Anderson wrote:

Hey, this is great - I think the photo from the LCD monitor output is the most 
useful - I have actually been using a photo I took of the original font output 
(flanked by X characters for scale and alignment) which I enlarge on-screen and 
overlay a 6x20 grid so I can visualize where the pixels will land as I clean up the 
original font.  I can do the same with your photo to make a scaled & cleaned-up 
DVI-inspired font.


If you're going to do that much, then I will grab some more pics with a 
better camera and a tripod so my hand isn't moving, and manual focus. 
Maybe even a good straight-on centered shot without glare from the room 
lights. Maybe with manual controls I can get a shot in the dark without 
the text blooming.


It was difficult to get a clear pic with my phone, mostly because for 
this you can't use the flash, and that's pretty much the only way to get 
good clear shots with my phone is with the flash. I guess the flash 
makes a shorter exposure time.


--
bkw


Re: [M100] DVI character set

2021-01-28 Thread Jim Anderson
Hey, this is great - I think the photo from the LCD monitor output is the most 
useful - I have actually been using a photo I took of the original font output 
(flanked by X characters for scale and alignment) which I enlarge on-screen and 
overlay a 6x20 grid so I can visualize where the pixels will land as I clean up 
the original font.  I can do the same with your photo to make a scaled & 
cleaned-up DVI-inspired font.







jim

> -Original Message-
> From: M100 [mailto:m100-boun...@lists.bitchin100.com] On Behalf Of Brian
> K. White
> Sent: Wednesday, January 27, 2021 22:15
> To: m...@bitchin100.com
> Subject: Re: [M100] DVI character set
> 
> CAUTION External Sender: Do not click links or open attachments unless
> you recognize the sender and know the content is safe.
> 
> 
> Added a few more snapshots from a low-end capture device with the
> composite from the DVI connected directly to the composite input of the
> capture device.
> The pics look bad, but they also look like what a typical small cheap
> color crt actually looks like, blurry and and with the red/blue
> artifacts.
> 
> On 1/28/21 12:42 AM, Brian White wrote:
> > I've put some snapshots from a video capture device up in the same
> > directory with the rom dumps.
> >
> > The image is scaled from composite 4:3 input to 1080p 16:9 hdmi
> > output, but not stretched. The aspect ratio is preserved.
> >
> > On Wed, Jan 27, 2021, 4:37 PM Jim Anderson  > <mailto:jim.ander...@kpu.ca>> wrote:
> >
> > > -Original Message-
> > > Hey DVI owners,
> > >
> > > Would someone mind doing a bit if information mining?
> > >
> > > I would love to get the font bitmap for the DVI.  Jim Anderson
> is
> > > working on improvements to MVT100 firmware and it would be cool
> > to copy
> > > and use these fonts.
> >
> > Something which would also be very useful would be a photo of the
> > DVI character set as displayed on-screen so I can get a sense of
> > the relative size and displayed shape of each character, since the
> > raw bitmap will likely need to be modified (at least to fit the
> > proportions of the new bitmap).
> >
> > If it's not too much trouble, a sharp photo of the DVI screen (in
> > WIDTH 80 mode) displaying the output of the following program
> > would be really helpful (just email the photo directly to me as I
> > will want the full resolution copy and it'll be at least a few
> mb).
> >
> > 10 screen 1,1
> > 20 width 80
> > 30 for c=32 to 255
> > 40 print "X";chr$(c);"X ";
> > 50 next c
> >
> >
> >
> >
> >
> >
> >
> > jim
> >
> 
> 
> --
> bkw



Re: [M100] DVI character set

2021-01-27 Thread Brian K. White
Added a few more snapshots from a low-end capture device with the 
composite from the DVI connected directly to the composite input of the 
capture device.
The pics look bad, but they also look like what a typical small cheap 
color crt actually looks like, blurry and and with the red/blue artifacts.


On 1/28/21 12:42 AM, Brian White wrote:
I've put some snapshots from a video capture device up in the same 
directory with the rom dumps.


The image is scaled from composite 4:3 input to 1080p 16:9 hdmi 
output, but not stretched. The aspect ratio is preserved.


On Wed, Jan 27, 2021, 4:37 PM Jim Anderson > wrote:


> -Original Message-
> Hey DVI owners,
>
> Would someone mind doing a bit if information mining?
>
> I would love to get the font bitmap for the DVI.  Jim Anderson is
> working on improvements to MVT100 firmware and it would be cool
to copy
> and use these fonts.

Something which would also be very useful would be a photo of the
DVI character set as displayed on-screen so I can get a sense of
the relative size and displayed shape of each character, since the
raw bitmap will likely need to be modified (at least to fit the
proportions of the new bitmap).

If it's not too much trouble, a sharp photo of the DVI screen (in
WIDTH 80 mode) displaying the output of the following program
would be really helpful (just email the photo directly to me as I
will want the full resolution copy and it'll be at least a few mb).

10 screen 1,1
20 width 80
30 for c=32 to 255
40 print "X";chr$(c);"X ";
50 next c







        jim




--
bkw



Re: [M100] DVI character set

2021-01-27 Thread Brian White
I've put some snapshots from a video capture device up in the same
directory with the rom dumps.

The image is scaled from composite 4:3 input to 1080p 16:9 hdmi output, but
not stretched. The aspect ratio is preserved.

On Wed, Jan 27, 2021, 4:37 PM Jim Anderson  wrote:

> > -Original Message-
> > Hey DVI owners,
> >
> > Would someone mind doing a bit if information mining?
> >
> > I would love to get the font bitmap for the DVI.  Jim Anderson is
> > working on improvements to MVT100 firmware and it would be cool to copy
> > and use these fonts.
>
> Something which would also be very useful would be a photo of the DVI
> character set as displayed on-screen so I can get a sense of the relative
> size and displayed shape of each character, since the raw bitmap will
> likely need to be modified (at least to fit the proportions of the new
> bitmap).
>
> If it's not too much trouble, a sharp photo of the DVI screen (in WIDTH 80
> mode) displaying the output of the following program would be really
> helpful (just email the photo directly to me as I will want the full
> resolution copy and it'll be at least a few mb).
>
> 10 screen 1,1
> 20 width 80
> 30 for c=32 to 255
> 40 print "X";chr$(c);"X ";
> 50 next c
>
>
>
>
>
>
>
> jim
>


Re: [M100] DVI character set

2021-01-27 Thread Brian White
The service manual pg 6-5 says there was another rom image for UK, Belgium,
& Australia.

This one was for USA & Canada.

And it says this same thing for both M17 and M40.

On Wed, Jan 27, 2021, 1:05 PM Stephen Adolph  wrote:

> looks like 8x8 characters, 2KB total.
>
> On Wed, Jan 27, 2021 at 12:00 PM Stephen Adolph 
> wrote:
>
>> super cool thanks for the quick turn!
>> Steve
>>
>> On Wed, Jan 27, 2021 at 11:52 AM Brian K. White 
>> wrote:
>>
>>> On 1/26/21 10:42 PM, Stephen Adolph wrote:
>>> > Hey DVI owners,
>>> >
>>> > Would someone mind doing a bit if information mining?
>>> >
>>> > I would love to get the font bitmap for the DVI.  Jim Anderson is
>>> > working on improvements to MVT100 firmware and it would be cool to
>>> copy
>>> > and use these fonts.
>>> >
>>> > It is stored in a 4 K eprom M17.  So I am wondering if someone could
>>> > pull the chip and read the eprom data?
>>> >
>>> > Thanks
>>> > Steve
>>> >
>>>
>>> Here ya go
>>>
>>>
>>> https://drive.google.com/drive/folders/1yqVh_mj5vtBJhYng-Uitvsjnykq0Knnt?usp=sharing
>>>
>>> I have 2 units and dumped them both and they were identical.
>>>
>>> M40 is labelled "P"  (program?)
>>> M17 is labelled "CG" (character generator?)
>>>
>>> --
>>> bkw
>>>
>>


Re: [M100] DVI character set

2021-01-27 Thread Mike Stein
I hadn't looked at the actual differences  between Hizalev's upgrade and
the original (or Steve's version) but I wasn't  suggesting  that  we
actually use it; I just thought that in case you weren't aware of his
version (and a couple of others) the font set he used and the way he
implemented it might give some ideas to folks like you who are working on a
clearer and more attractive character set than Geoff Graham's (among other
enhancements).

Looking forward to the new and improved version!

m

On Wed, Jan 27, 2021 at 5:09 PM Jim Anderson  wrote:

> There’s a couple of problems.  For one, Peter Hizalev’s version of the
> board uses a higher model of PIC and I’m not sure if the one used in the
> MVT100 design is up to the task (Stephen and I had discussed going down
> this path at some point).  I just tried flashing Peter’s .hex file into my
> MVT100 and that was a no-go – the LED didn’t illuminate and no video output
> was produced.  (I tried v3.0.2 and v2.0.2 whose file size was more in line
> with the .hex file for this version of the board, but both produced the
> same non-result.)
>
>
>
> I really don’t know enough about these devices or the MPLAB toolkit to say
> what would be involved in compiling Peter’s source to run on this PIC, not
> to mention whether it has the resources to run Peter’s code.  On top of
> that, his version of the board doesn’t have composite video output or baud
> rate jumpers, so those features would be lost unless someone with more
> skills than I have put that code back.  Not to mention, the M100 extra
> escape codes would need to be added and the 128-255 characters from the
> M100/DVI character set would need to be converted.
>
>
>
> It's probably not impossible, but it’s definitely not a task I’m cut out
> for.  :)
>
>
>
> I think the improvements I’m making will help quite a bit.  The original
> Geoff Graham design used a 6x12 font which was actually 5x10 if you
> subtract buffer space.  Of that, most characters only occupied 5x7 pixels
> and the rest was reserved for descenders and buffer space.  Then, in
> 24-line mode it would scale up to 6x18 by simply repeating every other
> scanline.  This made a bit of a mess of the characters, which I’m guessing
> had led Geoff to some compromises in the character shapes to minimize the
> negative side-effect of the scaling.
>
>
>
> I’m re-drawing the characters as 6x18 (while still retaining the 6x12
> character bitmaps for the code to use in 36-line mode) so a normal capital
> letter would occupy 5x11 pixels with up to 4 pixels available for
> descenders.  I was hand-scaling the original Geoff Graham character shapes
> (except for my improved 6, 9, and Q) but then had the idea to look at the
> real DVI font to see if it has more pleasing character shapes.  At the very
> least, it’s more authentic to the MVT100’s purpose.  :)
>
>
>
> (Note: if the DVI characters are horrible, I may just stick with Geoff’s
> characters.  In all likelihood, I will probably end up with two full
> character sets, and in that case I guess people could choose to burn a .hex
> file with the DVI-inspired font or the Geoff-inspired font...)
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> jim
>
>
>
> *From:* M100 [mailto:m100-boun...@lists.bitchin100.com] *On Behalf Of *Mike
> Stein
> *Sent:* Wednesday, January 27, 2021 12:53
> *To:* m...@bitchin100.com
> *Subject:* Re: [M100] DVI character set
>
>
>
> *CAUTION External Sender:* Do not click links or open attachments unless
> you recognize the sender and know the content is safe.
>
>
>
> Just thought since all the source files are there it might be helpful if
> you're also changing the MVT character set.
>
>
>
> On Wed, Jan 27, 2021 at 2:25 PM Stephen Adolph 
> wrote:
>
> thanks Mike, similar motivations for sure.  The other part of it is that
> the M100 DVI character set is unique and related to the M100.  So, thinking
> to both improve it and change the character set to "M100 style".
>
>
>
>
>
> On Wed, Jan 27, 2021 at 2:21 PM Mike Stein  wrote:
>
> https://github.com/petrohi/terminal/tree/master/firmware/Terminal.X
> <https://can01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fpetrohi%2Fterminal%2Ftree%2Fmaster%2Ffirmware%2FTerminal.X&data=04%7C01%7CJim.Anderson%40kpu.ca%7C87a9dab7855f472c06be08d8c3059ece%7C66b9f62d3042495eaab6db86f21500c0%7C0%7C0%7C637473776195987532%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=HRdKEMW9C46NhL10V2dKM%2BWOeXPTEd%2BnHiT8wDF7Sg8%3D&reserved=0>
>
>
>
> "The updated Version 2 is a huge improvement to the display an

Re: [M100] DVI character set

2021-01-27 Thread Jim Anderson
There's a couple of problems.  For one, Peter Hizalev's version of the board 
uses a higher model of PIC and I'm not sure if the one used in the MVT100 
design is up to the task (Stephen and I had discussed going down this path at 
some point).  I just tried flashing Peter's .hex file into my MVT100 and that 
was a no-go - the LED didn't illuminate and no video output was produced.  (I 
tried v3.0.2 and v2.0.2 whose file size was more in line with the .hex file for 
this version of the board, but both produced the same non-result.)

I really don't know enough about these devices or the MPLAB toolkit to say what 
would be involved in compiling Peter's source to run on this PIC, not to 
mention whether it has the resources to run Peter's code.  On top of that, his 
version of the board doesn't have composite video output or baud rate jumpers, 
so those features would be lost unless someone with more skills than I have put 
that code back.  Not to mention, the M100 extra escape codes would need to be 
added and the 128-255 characters from the M100/DVI character set would need to 
be converted.

It's probably not impossible, but it's definitely not a task I'm cut out for.  
:)

I think the improvements I'm making will help quite a bit.  The original Geoff 
Graham design used a 6x12 font which was actually 5x10 if you subtract buffer 
space.  Of that, most characters only occupied 5x7 pixels and the rest was 
reserved for descenders and buffer space.  Then, in 24-line mode it would scale 
up to 6x18 by simply repeating every other scanline.  This made a bit of a mess 
of the characters, which I'm guessing had led Geoff to some compromises in the 
character shapes to minimize the negative side-effect of the scaling.

I'm re-drawing the characters as 6x18 (while still retaining the 6x12 character 
bitmaps for the code to use in 36-line mode) so a normal capital letter would 
occupy 5x11 pixels with up to 4 pixels available for descenders.  I was 
hand-scaling the original Geoff Graham character shapes (except for my improved 
6, 9, and Q) but then had the idea to look at the real DVI font to see if it 
has more pleasing character shapes.  At the very least, it's more authentic to 
the MVT100's purpose.  :)

(Note: if the DVI characters are horrible, I may just stick with Geoff's 
characters.  In all likelihood, I will probably end up with two full character 
sets, and in that case I guess people could choose to burn a .hex file with the 
DVI-inspired font or the Geoff-inspired font...)







jim

From: M100 [mailto:m100-boun...@lists.bitchin100.com] On Behalf Of Mike Stein
Sent: Wednesday, January 27, 2021 12:53
To: m...@bitchin100.com
Subject: Re: [M100] DVI character set

CAUTION External Sender: Do not click links or open attachments unless you 
recognize the sender and know the content is safe.

Just thought since all the source files are there it might be helpful if you're 
also changing the MVT character set.

On Wed, Jan 27, 2021 at 2:25 PM Stephen Adolph 
mailto:twospru...@gmail.com>> wrote:
thanks Mike, similar motivations for sure.  The other part of it is that the 
M100 DVI character set is unique and related to the M100.  So, thinking to both 
improve it and change the character set to "M100 style".


On Wed, Jan 27, 2021 at 2:21 PM Mike Stein 
mailto:mhs.st...@gmail.com>> wrote:
https://github.com/petrohi/terminal/tree/master/firmware/Terminal.X<https://can01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fpetrohi%2Fterminal%2Ftree%2Fmaster%2Ffirmware%2FTerminal.X&data=04%7C01%7CJim.Anderson%40kpu.ca%7C87a9dab7855f472c06be08d8c3059ece%7C66b9f62d3042495eaab6db86f21500c0%7C0%7C0%7C637473776195987532%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=HRdKEMW9C46NhL10V2dKM%2BWOeXPTEd%2BnHiT8wDF7Sg8%3D&reserved=0>

"The updated Version 2 is a huge improvement to the display and character 
generation. It results in an easier to read and much clearer display. "

On Wed, Jan 27, 2021 at 1:05 PM Stephen Adolph 
mailto:twospru...@gmail.com>> wrote:
looks like 8x8 characters, 2KB total.

On Wed, Jan 27, 2021 at 12:00 PM Stephen Adolph 
mailto:twospru...@gmail.com>> wrote:
super cool thanks for the quick turn!
Steve

On Wed, Jan 27, 2021 at 11:52 AM Brian K. White 
mailto:b.kenyo...@gmail.com>> wrote:
On 1/26/21 10:42 PM, Stephen Adolph wrote:
> Hey DVI owners,
>
> Would someone mind doing a bit if information mining?
>
> I would love to get the font bitmap for the DVI.  Jim Anderson is
> working on improvements to MVT100 firmware and it would be cool to copy
> and use these fonts.
>
> It is stored in a 4 K eprom M17.  So I am wondering if someone could
> pull the chip and read the eprom data?
>
> Thanks
> Steve
>

Here ya go


Re: [M100] DVI character set

2021-01-27 Thread Jim Anderson
> -Original Message-
> Hey DVI owners,
> 
> Would someone mind doing a bit if information mining?
> 
> I would love to get the font bitmap for the DVI.  Jim Anderson is
> working on improvements to MVT100 firmware and it would be cool to copy
> and use these fonts.

Something which would also be very useful would be a photo of the DVI character 
set as displayed on-screen so I can get a sense of the relative size and 
displayed shape of each character, since the raw bitmap will likely need to be 
modified (at least to fit the proportions of the new bitmap).

If it's not too much trouble, a sharp photo of the DVI screen (in WIDTH 80 
mode) displaying the output of the following program would be really helpful 
(just email the photo directly to me as I will want the full resolution copy 
and it'll be at least a few mb).

10 screen 1,1
20 width 80
30 for c=32 to 255
40 print "X";chr$(c);"X ";
50 next c







jim


Re: [M100] DVI character set

2021-01-27 Thread Mike Stein
Just thought since all the source files are there it might be helpful if
you're also changing the MVT character set.

On Wed, Jan 27, 2021 at 2:25 PM Stephen Adolph  wrote:

> thanks Mike, similar motivations for sure.  The other part of it is that
> the M100 DVI character set is unique and related to the M100.  So, thinking
> to both improve it and change the character set to "M100 style".
>
>
> On Wed, Jan 27, 2021 at 2:21 PM Mike Stein  wrote:
>
>> https://github.com/petrohi/terminal/tree/master/firmware/Terminal.X
>>
>> "The updated Version 2 is a huge improvement to the display and character
>> generation. It results in an easier to read and much clearer display. "
>>
>> On Wed, Jan 27, 2021 at 1:05 PM Stephen Adolph 
>> wrote:
>>
>>> looks like 8x8 characters, 2KB total.
>>>
>>> On Wed, Jan 27, 2021 at 12:00 PM Stephen Adolph 
>>> wrote:
>>>
>>>> super cool thanks for the quick turn!
>>>> Steve
>>>>
>>>> On Wed, Jan 27, 2021 at 11:52 AM Brian K. White 
>>>> wrote:
>>>>
>>>>> On 1/26/21 10:42 PM, Stephen Adolph wrote:
>>>>> > Hey DVI owners,
>>>>> >
>>>>> > Would someone mind doing a bit if information mining?
>>>>> >
>>>>> > I would love to get the font bitmap for the DVI.  Jim Anderson is
>>>>> > working on improvements to MVT100 firmware and it would be cool to
>>>>> copy
>>>>> > and use these fonts.
>>>>> >
>>>>> > It is stored in a 4 K eprom M17.  So I am wondering if someone could
>>>>> > pull the chip and read the eprom data?
>>>>> >
>>>>> > Thanks
>>>>> > Steve
>>>>> >
>>>>>
>>>>> Here ya go
>>>>>
>>>>>
>>>>> https://drive.google.com/drive/folders/1yqVh_mj5vtBJhYng-Uitvsjnykq0Knnt?usp=sharing
>>>>>
>>>>> I have 2 units and dumped them both and they were identical.
>>>>>
>>>>> M40 is labelled "P"  (program?)
>>>>> M17 is labelled "CG" (character generator?)
>>>>>
>>>>> --
>>>>> bkw
>>>>>
>>>>


Re: [M100] DVI character set

2021-01-27 Thread Stephen Adolph
thanks Mike, similar motivations for sure.  The other part of it is that
the M100 DVI character set is unique and related to the M100.  So, thinking
to both improve it and change the character set to "M100 style".


On Wed, Jan 27, 2021 at 2:21 PM Mike Stein  wrote:

> https://github.com/petrohi/terminal/tree/master/firmware/Terminal.X
>
> "The updated Version 2 is a huge improvement to the display and character
> generation. It results in an easier to read and much clearer display. "
>
> On Wed, Jan 27, 2021 at 1:05 PM Stephen Adolph 
> wrote:
>
>> looks like 8x8 characters, 2KB total.
>>
>> On Wed, Jan 27, 2021 at 12:00 PM Stephen Adolph 
>> wrote:
>>
>>> super cool thanks for the quick turn!
>>> Steve
>>>
>>> On Wed, Jan 27, 2021 at 11:52 AM Brian K. White 
>>> wrote:
>>>
>>>> On 1/26/21 10:42 PM, Stephen Adolph wrote:
>>>> > Hey DVI owners,
>>>> >
>>>> > Would someone mind doing a bit if information mining?
>>>> >
>>>> > I would love to get the font bitmap for the DVI.  Jim Anderson is
>>>> > working on improvements to MVT100 firmware and it would be cool to
>>>> copy
>>>> > and use these fonts.
>>>> >
>>>> > It is stored in a 4 K eprom M17.  So I am wondering if someone could
>>>> > pull the chip and read the eprom data?
>>>> >
>>>> > Thanks
>>>> > Steve
>>>> >
>>>>
>>>> Here ya go
>>>>
>>>>
>>>> https://drive.google.com/drive/folders/1yqVh_mj5vtBJhYng-Uitvsjnykq0Knnt?usp=sharing
>>>>
>>>> I have 2 units and dumped them both and they were identical.
>>>>
>>>> M40 is labelled "P"  (program?)
>>>> M17 is labelled "CG" (character generator?)
>>>>
>>>> --
>>>> bkw
>>>>
>>>


Re: [M100] DVI character set

2021-01-27 Thread Mike Stein
https://github.com/petrohi/terminal/tree/master/firmware/Terminal.X

"The updated Version 2 is a huge improvement to the display and character
generation. It results in an easier to read and much clearer display. "

On Wed, Jan 27, 2021 at 1:05 PM Stephen Adolph  wrote:

> looks like 8x8 characters, 2KB total.
>
> On Wed, Jan 27, 2021 at 12:00 PM Stephen Adolph 
> wrote:
>
>> super cool thanks for the quick turn!
>> Steve
>>
>> On Wed, Jan 27, 2021 at 11:52 AM Brian K. White 
>> wrote:
>>
>>> On 1/26/21 10:42 PM, Stephen Adolph wrote:
>>> > Hey DVI owners,
>>> >
>>> > Would someone mind doing a bit if information mining?
>>> >
>>> > I would love to get the font bitmap for the DVI.  Jim Anderson is
>>> > working on improvements to MVT100 firmware and it would be cool to
>>> copy
>>> > and use these fonts.
>>> >
>>> > It is stored in a 4 K eprom M17.  So I am wondering if someone could
>>> > pull the chip and read the eprom data?
>>> >
>>> > Thanks
>>> > Steve
>>> >
>>>
>>> Here ya go
>>>
>>>
>>> https://drive.google.com/drive/folders/1yqVh_mj5vtBJhYng-Uitvsjnykq0Knnt?usp=sharing
>>>
>>> I have 2 units and dumped them both and they were identical.
>>>
>>> M40 is labelled "P"  (program?)
>>> M17 is labelled "CG" (character generator?)
>>>
>>> --
>>> bkw
>>>
>>


Re: [M100] DVI character set

2021-01-27 Thread Mike Stein
One of the clones of Graham's terminal has a different character set
supposedly superior to the original. I downloaded the binary intending to
check it out but now I can't find it; I'll keep looking, might be worth a
look

On Tue, Jan 26, 2021 at 10:42 PM Stephen Adolph 
wrote:

> Hey DVI owners,
>
> Would someone mind doing a bit if information mining?
>
> I would love to get the font bitmap for the DVI.  Jim Anderson is working
> on improvements to MVT100 firmware and it would be cool to copy and use
> these fonts.
>
> It is stored in a 4 K eprom M17.  So I am wondering if someone could pull
> the chip and read the eprom data?
>
> Thanks
> Steve
>
>


Re: [M100] DVI character set

2021-01-27 Thread Stephen Adolph
looks like 8x8 characters, 2KB total.

On Wed, Jan 27, 2021 at 12:00 PM Stephen Adolph 
wrote:

> super cool thanks for the quick turn!
> Steve
>
> On Wed, Jan 27, 2021 at 11:52 AM Brian K. White 
> wrote:
>
>> On 1/26/21 10:42 PM, Stephen Adolph wrote:
>> > Hey DVI owners,
>> >
>> > Would someone mind doing a bit if information mining?
>> >
>> > I would love to get the font bitmap for the DVI.  Jim Anderson is
>> > working on improvements to MVT100 firmware and it would be cool to copy
>> > and use these fonts.
>> >
>> > It is stored in a 4 K eprom M17.  So I am wondering if someone could
>> > pull the chip and read the eprom data?
>> >
>> > Thanks
>> > Steve
>> >
>>
>> Here ya go
>>
>>
>> https://drive.google.com/drive/folders/1yqVh_mj5vtBJhYng-Uitvsjnykq0Knnt?usp=sharing
>>
>> I have 2 units and dumped them both and they were identical.
>>
>> M40 is labelled "P"  (program?)
>> M17 is labelled "CG" (character generator?)
>>
>> --
>> bkw
>>
>


Re: [M100] DVI character set

2021-01-27 Thread Stephen Adolph
super cool thanks for the quick turn!
Steve

On Wed, Jan 27, 2021 at 11:52 AM Brian K. White 
wrote:

> On 1/26/21 10:42 PM, Stephen Adolph wrote:
> > Hey DVI owners,
> >
> > Would someone mind doing a bit if information mining?
> >
> > I would love to get the font bitmap for the DVI.  Jim Anderson is
> > working on improvements to MVT100 firmware and it would be cool to copy
> > and use these fonts.
> >
> > It is stored in a 4 K eprom M17.  So I am wondering if someone could
> > pull the chip and read the eprom data?
> >
> > Thanks
> > Steve
> >
>
> Here ya go
>
>
> https://drive.google.com/drive/folders/1yqVh_mj5vtBJhYng-Uitvsjnykq0Knnt?usp=sharing
>
> I have 2 units and dumped them both and they were identical.
>
> M40 is labelled "P"  (program?)
> M17 is labelled "CG" (character generator?)
>
> --
> bkw
>


Re: [M100] DVI character set

2021-01-27 Thread Brian K. White

On 1/26/21 10:42 PM, Stephen Adolph wrote:

Hey DVI owners,

Would someone mind doing a bit if information mining?

I would love to get the font bitmap for the DVI.  Jim Anderson is 
working on improvements to MVT100 firmware and it would be cool to copy 
and use these fonts.


It is stored in a 4 K eprom M17.  So I am wondering if someone could 
pull the chip and read the eprom data?


Thanks
Steve



Here ya go

https://drive.google.com/drive/folders/1yqVh_mj5vtBJhYng-Uitvsjnykq0Knnt?usp=sharing

I have 2 units and dumped them both and they were identical.

M40 is labelled "P"  (program?)
M17 is labelled "CG" (character generator?)

--
bkw


[M100] DVI character set

2021-01-26 Thread Stephen Adolph
Hey DVI owners,

Would someone mind doing a bit if information mining?

I would love to get the font bitmap for the DVI.  Jim Anderson is working
on improvements to MVT100 firmware and it would be cool to copy and use
these fonts.

It is stored in a 4 K eprom M17.  So I am wondering if someone could pull
the chip and read the eprom data?

Thanks
Steve


Re: [M100] DVI replacement floppy drive

2020-07-07 Thread Stephen Adolph
you can get drive solutions pretty readily that do just that, so 2 3.5 inch
floppy drives can fit mechanically into a single 5.25 drive bay.  Slim
server floppies are like that.
I used those to mount 2 3.5 floppies in a dead TPDD case for use with Color
computer.
It turned out pretty well!

On Tue, Jul 7, 2020 at 6:23 PM Mike Stein  wrote:

> Just another thought:
>
> If you were up to making some custom cables and mounting brackets one
> possible solution to your dilemma might be to squeeze two 1/4 height 3.5"
> floppy drives into a single 'normal' 3.5" half height bracket, freeing the
> other bay for the 5 1/4" drive, with a switch to select 3.5 or 5.25.
>
> Might just try that myself... ;-)
>
> m
>
> - Original Message -
> From: "Greg Swallow" 
> To: "Mike Stein" 
> Sent: Tuesday, July 07, 2020 8:33 AM
> Subject: Re: [M100] DVI replacement floppy drive
>
>
> > They work, but not as 1.44mb drives. Not even 720k or double-sided. That
> would require hardware changes/additions.
> >
> > Since later drives support formatting to former technology, I thought it
> would be worth a try. I made sure the drives had jumper blocks for drive
> select. My DVI came with the standard 5.25" drive zero and M100 boot
> diskette. The first 3.5" went in as drive 1. Formatting worked fine to 180k
> on 3.5 diskettes. So, installed another 3.5 as drive zero. Booted from the
> 5.25" to 3.5" Backup System diskette and we were in business. Also have a
> CCR-81 on the DVI Model 100 and connected it to a desktop/TPDD (mComm).
> Only problem would be moving software from 5.25" to 3.5" now. I would have
> to open up the DVI and swap a drive for the task.
> >
> > God Bless,
> >
> > GregS <><
> >
> > Jul 7, 2020 4:32:30 AM Mike Stein :
> >
> >> ...or maybe even:
> >>
> >>  [cid:36B70691E5714CCE9CDEA74985899B30@310e2]
> >>
> >>> - Original Message -
> >>>
> >>> From: James Zeun[james.z...@gmail.com]
> >>>
> >>> To: M100 Mailing List[m...@bitchin100.com]
> >>>
> >>> Sent: Friday, July 03, 2020 7:31 PM
> >>>
> >>> Subject: Re: [M100] DVI replacement floppy drive
> >>>
> >>> Wait, you actually have 3.5" floppy drives working on the DVI?
> >>>
> >>> Would not have expected that
> >>>
> >>> On Fri, 3 Jul 2020, 11:43 pm Greg Swallow,  wrote:
> >>>
> >>>> James:
> >>>>
> >>>> I'd try it. Seems the DVI is pretty forgiving. I have boxes & boxes
> of old 3.5in diskettes. So, installed two 1.44mb drives in my DVI. I don't
> get 1.44mb or double sided, but I have plenty of media.
> >>>>
> >>>> GregS <><
> >>>>
> >>>> Jul 3, 2020 2:53:53 PM james.z...@gmail.com:
> >>>>
> >>>>> Would a 180kb floppy drive work in the DVI?
> >>>>>
> >>>>> Sent from my iPad
> >>>>>
> >>>
> >
>


Re: [M100] DVI replacement floppy drive

2020-07-07 Thread Mike Stein
Just another thought:

If you were up to making some custom cables and mounting brackets one possible 
solution to your dilemma might be to squeeze two 1/4 height 3.5" floppy drives 
into a single 'normal' 3.5" half height bracket, freeing the other bay for the 
5 1/4" drive, with a switch to select 3.5 or 5.25.

Might just try that myself... ;-)

m

- Original Message - 
From: "Greg Swallow" 
To: "Mike Stein" 
Sent: Tuesday, July 07, 2020 8:33 AM
Subject: Re: [M100] DVI replacement floppy drive


> They work, but not as 1.44mb drives. Not even 720k or double-sided. That 
> would require hardware changes/additions.
> 
> Since later drives support formatting to former technology, I thought it 
> would be worth a try. I made sure the drives had jumper blocks for drive 
> select. My DVI came with the standard 5.25" drive zero and M100 boot 
> diskette. The first 3.5" went in as drive 1. Formatting worked fine to 180k 
> on 3.5 diskettes. So, installed another 3.5 as drive zero. Booted from the 
> 5.25" to 3.5" Backup System diskette and we were in business. Also have a 
> CCR-81 on the DVI Model 100 and connected it to a desktop/TPDD (mComm). Only 
> problem would be moving software from 5.25" to 3.5" now. I would have to open 
> up the DVI and swap a drive for the task.
> 
> God Bless,
> 
> GregS <><
> 
> Jul 7, 2020 4:32:30 AM Mike Stein :
> 
>> ...or maybe even:
>> 
>>  [cid:36B70691E5714CCE9CDEA74985899B30@310e2]
>> 
>>> - Original Message -
>>> 
>>> From: James Zeun[james.z...@gmail.com]
>>> 
>>> To: M100 Mailing List[m...@bitchin100.com]
>>> 
>>> Sent: Friday, July 03, 2020 7:31 PM
>>> 
>>> Subject: Re: [M100] DVI replacement floppy drive
>>> 
>>> Wait, you actually have 3.5" floppy drives working on the DVI?
>>> 
>>> Would not have expected that
>>> 
>>> On Fri, 3 Jul 2020, 11:43 pm Greg Swallow,  wrote:
>>> 
>>>> James:
>>>> 
>>>> I'd try it. Seems the DVI is pretty forgiving. I have boxes & boxes of old 
>>>> 3.5in diskettes. So, installed two 1.44mb drives in my DVI. I don't get 
>>>> 1.44mb or double sided, but I have plenty of media.
>>>> 
>>>> GregS <><
>>>> 
>>>> Jul 3, 2020 2:53:53 PM james.z...@gmail.com:
>>>> 
>>>>> Would a 180kb floppy drive work in the DVI?
>>>>>
>>>>> Sent from my iPad
>>>>>
>>> 
>


Re: [M100] DVI replacement floppy drive

2020-07-07 Thread Mike Stein
Well, as I said it was meant more as a 'wouldn't this be nice' picture, not one 
of an actual fully functional configuration; still, it wouldn't be impossible...

As an OT aside; one of the things on my list is the opposite challenge, namely 
to modify the speed of the 3.5" drive from 300rpm to 360, the same as the 5 
1/4" HD drive.

In the S100 world and elsewhere many systems used 8" drives, which are becoming 
scarce and expensive (as are the diskettes); as it happens both 5 1/4" and 3.5" 
HD drives are fully compatible with the 8" formats except for the lower speed 
of the 3.5" drives.

Some 3.5" drives have jumpers to change to 360 rpm and many of us do use them 
as replacements for 8" drives, but AFAIK none of the dual 3.5/5.25" HD combo 
drives have that jumper option.

m 
  - Original Message - 
  From: Chris Fezzler 
  To: m...@bitchin100.com 
  Sent: Tuesday, July 07, 2020 3:14 PM
  Subject: Re: [M100] DVI replacement floppy drive


  Nice setup there!


  On Tuesday, July 7, 2020, 07:29:28 AM EDT, Mike Stein  
wrote: 




  ...or maybe even:


- Original Message - 
From: James Zeun 
To: M100 Mailing List 
Sent: Friday, July 03, 2020 7:31 PM
Subject: Re: [M100] DVI replacement floppy drive


Wait, you actually have 3.5" floppy drives working on the DVI? 


Would not have expected that


On Fri, 3 Jul 2020, 11:43 pm Greg Swallow,  wrote:

  James:

  I'd try it. Seems the DVI is pretty forgiving. I have boxes & boxes of 
old 3.5in diskettes. So, installed two 1.44mb drives in my DVI. I don't get 
1.44mb or double sided, but I have plenty of media.

  GregS <><

  Jul 3, 2020 2:53:53 PM james.z...@gmail.com:

  > Would a 180kb floppy drive work in the DVI?
  > 
  > Sent from my iPad
  > 



--





Re: [M100] DVI replacement floppy drive

2020-07-07 Thread Mike Stein
Yup; should be fine. I don't recall what the DVI came with, it might even have 
been a Chinon drive. 

I replaced mine with two matching 'normal' 360K drives way back when; the only 
issue IIRC when replacing one drive was that the interface connector was on the 
opposite edge and the cable didn't quite reach across.

m
  - Original Message - 
  From: James Zeun 
  To: M100 Mailing List 
  Sent: Tuesday, July 07, 2020 4:12 PM
  Subject: Re: [M100] DVI replacement floppy drive


  The replacement drive I've bought was this


  https://www.ebay.co.uk/itm/224046494179



  My understanding was the stock drive in the DVI where 180k




  On Tue, 7 Jul 2020, 8:15 pm Chris Fezzler,  wrote:

Nice setup there!


On Tuesday, July 7, 2020, 07:29:28 AM EDT, Mike Stein  
wrote: 




...or maybe even:


  - Original Message - 
  From: James Zeun 
  To: M100 Mailing List 
  Sent: Friday, July 03, 2020 7:31 PM
      Subject: Re: [M100] DVI replacement floppy drive


  Wait, you actually have 3.5" floppy drives working on the DVI? 


  Would not have expected that


  On Fri, 3 Jul 2020, 11:43 pm Greg Swallow,  wrote:

James:

I'd try it. Seems the DVI is pretty forgiving. I have boxes & boxes of 
old 3.5in diskettes. So, installed two 1.44mb drives in my DVI. I don't get 
1.44mb or double sided, but I have plenty of media.

GregS <><

Jul 3, 2020 2:53:53 PM james.z...@gmail.com:

> Would a 180kb floppy drive work in the DVI?
> 
> Sent from my iPad
> 


Re: [M100] DVI replacement floppy drive

2020-07-07 Thread James Zeun
The replacement drive I've bought was this

https://www.ebay.co.uk/itm/224046494179

My understanding was the stock drive in the DVI where 180k


On Tue, 7 Jul 2020, 8:15 pm Chris Fezzler,  wrote:

> Nice setup there!
>
> On Tuesday, July 7, 2020, 07:29:28 AM EDT, Mike Stein 
> wrote:
>
>
> ...or maybe even:
>
>
> - Original Message -
> *From:* James Zeun 
> *To:* M100 Mailing List 
> *Sent:* Friday, July 03, 2020 7:31 PM
> *Subject:* Re: [M100] DVI replacement floppy drive
>
> Wait, you actually have 3.5" floppy drives working on the DVI?
>
> Would not have expected that
>
> On Fri, 3 Jul 2020, 11:43 pm Greg Swallow,  wrote:
>
> James:
>
> I'd try it. Seems the DVI is pretty forgiving. I have boxes & boxes of old
> 3.5in diskettes. So, installed two 1.44mb drives in my DVI. I don't get
> 1.44mb or double sided, but I have plenty of media.
>
> GregS <><
>
> Jul 3, 2020 2:53:53 PM james.z...@gmail.com:
>
> > Would a 180kb floppy drive work in the DVI?
> >
> > Sent from my iPad
> >
>
>


Re: [M100] DVI replacement floppy drive

2020-07-07 Thread Chris Fezzler
 Nice setup there!
On Tuesday, July 7, 2020, 07:29:28 AM EDT, Mike Stein  
wrote:  
 
  ...or maybe even: 
 - Original Message -  From: James Zeun  To: M100 Mailing List  Sent: 
Friday, July 03, 2020 7:31 PM Subject: Re: [M100] DVI replacement floppy drive 
 Wait, you actually have 3.5" floppy drives working on the DVI? 
 Would not have expected that
  On Fri, 3 Jul 2020, 11:43 pm Greg Swallow,  wrote:
 
James:

I'd try it. Seems the DVI is pretty forgiving. I have boxes & boxes of old 
3.5in diskettes. So, installed two 1.44mb drives in my DVI. I don't get 1.44mb 
or double sided, but I have plenty of media.

GregS <><

Jul 3, 2020 2:53:53 PM james.z...@gmail.com:

> Would a 180kb floppy drive work in the DVI?
> 
> Sent from my iPad
> 


  

Re: [M100] DVI replacement floppy drive

2020-07-07 Thread Mike Stein
Sorry; the 4-drive picture was not meant entirely seriously since no matter 
what the DVI only provides for two drives; the 5 1/4" drive does indeed 
normally spin at 360rpm instead of 300 but since we're talking about 
non-standard formats anyway that shouldn't necessarily matter. Looks cool 
though ;-)

You won't be able to read anything other than 180K 5 1/4"DD format diskettes on 
other drives; no different than trying to read your 3.5"HD diskettes on another 
drive. The point in reply to James was that if you don't mind being 
incompatible with the rest of the world then it doesn't much matter what disk 
drive/diskettes you use although no matter what you'll still only have 180K per 
(normally only one) side. 

To remain compatible you'll need a 5 1/4" 40 track DD drive (usually called 
360K)

No, without some modifications it would not solve your issue of requiring an 
external 5 1/4 drive to read DVI-format diskettes in your dual 3.5" system; 
sorry if I implied that. The main issue would actually be that the 5 1/4"HD 
drive would have to double-step; drive speed and density might be modifiable.

We had a discussion about different drives a few years back which is where I 
originally posted these pictures, and we actually did try some of the various 
drive combinations.

m
  - Original Message - 
  From: Gregory McGill 
  To: m...@bitchin100.com 
  Sent: Tuesday, July 07, 2020 11:17 AM
  Subject: Re: [M100] DVI replacement floppy drive


  no that is a high density drive without any real configuration abilities.. it 
is hard wired for d0 d1 internally AND they are at a different spindle speed 
than a single/double density drive so you wont be able to read disks with it 
written on other drives and vice versa 






  On Tue, Jul 7, 2020 at 4:29 AM Mike Stein  wrote:

...or maybe even:


  - Original Message - 
  From: James Zeun 
  To: M100 Mailing List 
      Sent: Friday, July 03, 2020 7:31 PM
  Subject: Re: [M100] DVI replacement floppy drive


  Wait, you actually have 3.5" floppy drives working on the DVI? 


  Would not have expected that


  On Fri, 3 Jul 2020, 11:43 pm Greg Swallow,  wrote:

James:

I'd try it. Seems the DVI is pretty forgiving. I have boxes & boxes of 
old 3.5in diskettes. So, installed two 1.44mb drives in my DVI. I don't get 
1.44mb or double sided, but I have plenty of media.

GregS <><

Jul 3, 2020 2:53:53 PM james.z...@gmail.com:

> Would a 180kb floppy drive work in the DVI?
> 
> Sent from my iPad
> 


Re: [M100] DVI replacement floppy drive

2020-07-07 Thread Gregory McGill
no that is a high density drive without any real configuration abilities..
it is hard wired for d0 d1 internally AND they are at a different spindle
speed than a single/double density drive so you wont be able to read disks
with it written on other drives and vice versa



On Tue, Jul 7, 2020 at 4:29 AM Mike Stein  wrote:

> ...or maybe even:
>
>
> - Original Message -
> *From:* James Zeun 
> *To:* M100 Mailing List 
> *Sent:* Friday, July 03, 2020 7:31 PM
> *Subject:* Re: [M100] DVI replacement floppy drive
>
> Wait, you actually have 3.5" floppy drives working on the DVI?
>
> Would not have expected that
>
> On Fri, 3 Jul 2020, 11:43 pm Greg Swallow,  wrote:
>
>> James:
>>
>> I'd try it. Seems the DVI is pretty forgiving. I have boxes & boxes of
>> old 3.5in diskettes. So, installed two 1.44mb drives in my DVI. I don't get
>> 1.44mb or double sided, but I have plenty of media.
>>
>> GregS <><
>>
>> Jul 3, 2020 2:53:53 PM james.z...@gmail.com:
>>
>> > Would a 180kb floppy drive work in the DVI?
>> >
>> > Sent from my iPad
>> >
>>
>


Re: [M100] DVI replacement floppy drive

2020-07-07 Thread Mike Stein
In general terms as long as a floppy drive can handle the density and has 
enough tracks it doesn't care about the disk format any more than a cassette 
player cares about the kind of music; that is mainly determined by the 
controller, the software and the diskette type (DD vs. HD).

Technically, a 1.44MB drive (capable of 80 tracks of 18 sectors) should be able 
to read and write almost any format.

The only useful hardware addition would be a switch to manually select either 
side of a double-sided drive/diskette, doubling the capacity at the cost of 
some inconvenience.

m

- Original Message - 
From: "Greg Swallow" 
To: "Mike Stein" 
Sent: Tuesday, July 07, 2020 8:33 AM
Subject: Re: [M100] DVI replacement floppy drive


> They work, but not as 1.44mb drives. Not even 720k or double-sided. That 
> would require hardware changes/additions.
> 
> Since later drives support formatting to former technology, I thought it 
> would be worth a try. I made sure the drives had jumper blocks for drive 
> select. My DVI came with the standard 5.25" drive zero and M100 boot 
> diskette. The first 3.5" went in as drive 1. Formatting worked fine to 180k 
> on 3.5 diskettes. So, installed another 3.5 as drive zero. Booted from the 
> 5.25" to 3.5" Backup System diskette and we were in business. Also have a 
> CCR-81 on the DVI Model 100 and connected it to a desktop/TPDD (mComm). Only 
> problem would be moving software from 5.25" to 3.5" now. I would have to open 
> up the DVI and swap a drive for the task.
> 
> God Bless,
> 
> GregS <><
> 
> Jul 7, 2020 4:32:30 AM Mike Stein :
> 
>> ...or maybe even:
>> 
>>  [cid:36B70691E5714CCE9CDEA74985899B30@310e2]
>> 
>>> - Original Message -
>>> 
>>> From: James Zeun[james.z...@gmail.com]
>>> 
>>> To: M100 Mailing List[m...@bitchin100.com]
>>> 
>>> Sent: Friday, July 03, 2020 7:31 PM
>>> 
>>> Subject: Re: [M100] DVI replacement floppy drive
>>> 
>>> Wait, you actually have 3.5" floppy drives working on the DVI?
>>> 
>>> Would not have expected that
>>> 
>>> On Fri, 3 Jul 2020, 11:43 pm Greg Swallow,  wrote:
>>> 
>>>> James:
>>>> 
>>>> I'd try it. Seems the DVI is pretty forgiving. I have boxes & boxes of old 
>>>> 3.5in diskettes. So, installed two 1.44mb drives in my DVI. I don't get 
>>>> 1.44mb or double sided, but I have plenty of media.
>>>> 
>>>> GregS <><
>>>> 
>>>> Jul 3, 2020 2:53:53 PM james.z...@gmail.com:
>>>> 
>>>>> Would a 180kb floppy drive work in the DVI?
>>>>>
>>>>> Sent from my iPad
>>>>>
>>> 
>


Re: [M100] DVI replacement floppy drive

2020-07-07 Thread Greg Swallow
They work, but not as 1.44mb drives. Not even 720k or double-sided. That would 
require hardware changes/additions.

Since later drives support formatting to former technology, I thought it would 
be worth a try. I made sure the drives had jumper blocks for drive select. My 
DVI came with the standard 5.25" drive zero and M100 boot diskette. The first 
3.5" went in as drive 1. Formatting worked fine to 180k on 3.5 diskettes. So, 
installed another 3.5 as drive zero. Booted from the 5.25" to 3.5" Backup 
System diskette and we were in business. Also have a CCR-81 on the DVI Model 
100 and connected it to a desktop/TPDD (mComm). Only problem would be moving 
software from 5.25" to 3.5" now. I would have to open up the DVI and swap a 
drive for the task.

God Bless,

GregS <><

Jul 7, 2020 4:32:30 AM Mike Stein :

> ...or maybe even:
> 
>  [cid:36B70691E5714CCE9CDEA74985899B30@310e2]
> 
>> - Original Message -
>> 
>> From: James Zeun[james.z...@gmail.com]
>> 
>> To: M100 Mailing List[m...@bitchin100.com]
>> 
>> Sent: Friday, July 03, 2020 7:31 PM
>> 
>> Subject: Re: [M100] DVI replacement floppy drive
>> 
>> Wait, you actually have 3.5" floppy drives working on the DVI?
>> 
>> Would not have expected that
>> 
>> On Fri, 3 Jul 2020, 11:43 pm Greg Swallow,  wrote:
>> 
>>> James:
>>> 
>>> I'd try it. Seems the DVI is pretty forgiving. I have boxes & boxes of old 
>>> 3.5in diskettes. So, installed two 1.44mb drives in my DVI. I don't get 
>>> 1.44mb or double sided, but I have plenty of media.
>>> 
>>> GregS <><
>>> 
>>> Jul 3, 2020 2:53:53 PM james.z...@gmail.com:
>>> 
>>>> Would a 180kb floppy drive work in the DVI?
>>>>
>>>> Sent from my iPad
>>>>
>> 


Re: [M100] DVI replacement floppy drive

2020-07-07 Thread James Zeun
Now I do like that!! I've never seen one of those before!

On Tue, 7 Jul 2020, 12:29 pm Mike Stein,  wrote:

> ...or maybe even:
>
>
> - Original Message -
> *From:* James Zeun 
> *To:* M100 Mailing List 
> *Sent:* Friday, July 03, 2020 7:31 PM
> *Subject:* Re: [M100] DVI replacement floppy drive
>
> Wait, you actually have 3.5" floppy drives working on the DVI?
>
> Would not have expected that
>
> On Fri, 3 Jul 2020, 11:43 pm Greg Swallow,  wrote:
>
>> James:
>>
>> I'd try it. Seems the DVI is pretty forgiving. I have boxes & boxes of
>> old 3.5in diskettes. So, installed two 1.44mb drives in my DVI. I don't get
>> 1.44mb or double sided, but I have plenty of media.
>>
>> GregS <><
>>
>> Jul 3, 2020 2:53:53 PM james.z...@gmail.com:
>>
>> > Would a 180kb floppy drive work in the DVI?
>> >
>> > Sent from my iPad
>> >
>>
>


Re: [M100] DVI replacement floppy drive

2020-07-07 Thread Mike Stein
...or maybe even:


  - Original Message - 
  From: James Zeun 
  To: M100 Mailing List 
  Sent: Friday, July 03, 2020 7:31 PM
  Subject: Re: [M100] DVI replacement floppy drive


  Wait, you actually have 3.5" floppy drives working on the DVI?


  Would not have expected that


  On Fri, 3 Jul 2020, 11:43 pm Greg Swallow,  wrote:

James:

I'd try it. Seems the DVI is pretty forgiving. I have boxes & boxes of old 
3.5in diskettes. So, installed two 1.44mb drives in my DVI. I don't get 1.44mb 
or double sided, but I have plenty of media.

GregS <><

Jul 3, 2020 2:53:53 PM james.z...@gmail.com:

> Would a 180kb floppy drive work in the DVI?
> 
> Sent from my iPad
> 


Re: [M100] DVI replacement floppy drive

2020-07-07 Thread Mike Stein
Why not?


  - Original Message - 
  From: James Zeun 
  To: M100 Mailing List 
  Sent: Friday, July 03, 2020 7:31 PM
  Subject: Re: [M100] DVI replacement floppy drive


  Wait, you actually have 3.5" floppy drives working on the DVI?


  Would not have expected that


  On Fri, 3 Jul 2020, 11:43 pm Greg Swallow,  wrote:

James:

I'd try it. Seems the DVI is pretty forgiving. I have boxes & boxes of old 
3.5in diskettes. So, installed two 1.44mb drives in my DVI. I don't get 1.44mb 
or double sided, but I have plenty of media.

GregS <><

Jul 3, 2020 2:53:53 PM james.z...@gmail.com:

> Would a 180kb floppy drive work in the DVI?
> 
> Sent from my iPad
> 


Re: [M100] DVI replacement floppy drive

2020-07-03 Thread James Zeun
Wait, you actually have 3.5" floppy drives working on the DVI?

Would not have expected that

On Fri, 3 Jul 2020, 11:43 pm Greg Swallow,  wrote:

> James:
>
> I'd try it. Seems the DVI is pretty forgiving. I have boxes & boxes of old
> 3.5in diskettes. So, installed two 1.44mb drives in my DVI. I don't get
> 1.44mb or double sided, but I have plenty of media.
>
> GregS <><
>
> Jul 3, 2020 2:53:53 PM james.z...@gmail.com:
>
> > Would a 180kb floppy drive work in the DVI?
> >
> > Sent from my iPad
> >
>


Re: [M100] DVI replacement floppy drive

2020-07-03 Thread Greg Swallow
James:

I'd try it. Seems the DVI is pretty forgiving. I have boxes & boxes of old 
3.5in diskettes. So, installed two 1.44mb drives in my DVI. I don't get 1.44mb 
or double sided, but I have plenty of media.

GregS <><

Jul 3, 2020 2:53:53 PM james.z...@gmail.com:

> Would a 180kb floppy drive work in the DVI?
> 
> Sent from my iPad
> 


[M100] DVI replacement floppy drive

2020-07-03 Thread james . zeun
Would a 180kb floppy drive work in the DVI?



Sent from my iPad


Re: [M100] DVI Floppy drive or blanking cover

2020-06-27 Thread Gregory McGill
Yep black pla+
I also print a gotek case to fit in the 5.25" bay..

It works like the amiga version, except there's no software loader you have
to select the images on the drive, optionally a oled screen you can see the
whole file name on and also optionally a rotary encoder to select
otherwise buttons and you can load the disk images on a modern system they
are stored on a usb thumbdrive.. what you can do with them when you get
them there? no idea. I load flashfloppy firmware on them which is the most
versatile and feature rich firmware.

Greg

On Sat, Jun 27, 2020 at 4:04 PM James Zeun  wrote:

> Oh that would be handy! Guessing you'd print it in black filament?
>
> I know how gotek drives work on the Amiga, but how do they work in the
> DVI? is it possible to read the disk images on a modern system?
>
>
>
> On 27 Jun 2020, at 23:43, Gregory McGill wrote:
>
> I can 3d print one, or sell you a gotek to stick in there
>
>
> On Sat, Jun 27, 2020 at 4:21 AM James Zeun  wrote:
>
>>
>> Hey guys
>>
>> A random question, but thought it worth a shot.
>>
>> Does anyone have a spare 180k floppy drive or perhaps a blanking
>> cover for the DVI?
>>
>> At the moment I have a gaping hole in the front of my DVI and I'd
>> very much like to cover it up with something.
>>
>> Or if anyone can recommend a few models of floppy drive I might be
>> able to look for on t'old fleabay, that would also be helpful.
>>
>> Cheers
>> James
>>
>>
>


Re: [M100] DVI Floppy drive or blanking cover

2020-06-27 Thread James Zeun

Oh that would be handy! Guessing you'd print it in black filament?

I know how gotek drives work on the Amiga, but how do they work in  
the DVI? is it possible to read the disk images on a modern system?




On 27 Jun 2020, at 23:43, Gregory McGill wrote:


I can 3d print one, or sell you a gotek to stick in there


On Sat, Jun 27, 2020 at 4:21 AM James Zeun   
wrote:


Hey guys

A random question, but thought it worth a shot.

Does anyone have a spare 180k floppy drive or perhaps a blanking
cover for the DVI?

At the moment I have a gaping hole in the front of my DVI and I'd
very much like to cover it up with something.

Or if anyone can recommend a few models of floppy drive I might be
able to look for on t'old fleabay, that would also be helpful.

Cheers
James





Re: [M100] DVI Floppy drive or blanking cover

2020-06-27 Thread Lee Kelley
Or put in a CD drive only connected to power and play music with headphones
or speakers connected to the front of it

On Sat, Jun 27, 2020, 17:43 Gregory McGill  wrote:

> I can 3d print one, or sell you a gotek to stick in there
>
>
> On Sat, Jun 27, 2020 at 4:21 AM James Zeun  wrote:
>
>>
>> Hey guys
>>
>> A random question, but thought it worth a shot.
>>
>> Does anyone have a spare 180k floppy drive or perhaps a blanking
>> cover for the DVI?
>>
>> At the moment I have a gaping hole in the front of my DVI and I'd
>> very much like to cover it up with something.
>>
>> Or if anyone can recommend a few models of floppy drive I might be
>> able to look for on t'old fleabay, that would also be helpful.
>>
>> Cheers
>> James
>>
>>


Re: [M100] DVI Floppy drive or blanking cover

2020-06-27 Thread Gregory McGill
I can 3d print one, or sell you a gotek to stick in there


On Sat, Jun 27, 2020 at 4:21 AM James Zeun  wrote:

>
> Hey guys
>
> A random question, but thought it worth a shot.
>
> Does anyone have a spare 180k floppy drive or perhaps a blanking
> cover for the DVI?
>
> At the moment I have a gaping hole in the front of my DVI and I'd
> very much like to cover it up with something.
>
> Or if anyone can recommend a few models of floppy drive I might be
> able to look for on t'old fleabay, that would also be helpful.
>
> Cheers
> James
>
>


[M100] DVI Floppy drive or blanking cover

2020-06-27 Thread James Zeun



Hey guys

A random question, but thought it worth a shot.

Does anyone have a spare 180k floppy drive or perhaps a blanking  
cover for the DVI?


At the moment I have a gaping hole in the front of my DVI and I'd  
very much like to cover it up with something.


Or if anyone can recommend a few models of floppy drive I might be  
able to look for on t'old fleabay, that would also be helpful.


Cheers
James



[M100] DVI shakedown

2020-04-01 Thread Charles Hudson
Thanks, Kevin and Brian, for your responses; you've answered a lot of my
questions.

I did order the 3-part cable so I could use it with both the 100 and the
102.  I do not have a 200, and I recall answering that question when I put
in my order with Arcade Shopper, so I think I have the right disk.  In any
case the copy I made was later used to boot the system again so whatever I
have is working as well as need be.

I'm glad to have ordered the cable rather than try to make it; I saw the
twists and took the easy way out.  I'll go back and verify operation with
the 102 now that I know more.

Thanks again for all your help.  I'm both surprised and pleased at how
useful the DVI is.  An eBay purchase; you never know...

-CH-


Virus-free.
www.avg.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>


Re: [M100] DVI shakedown

2020-04-01 Thread Brian K. White

On 4/1/20 10:33 AM, Charles Hudson wrote:
Got the DVI cleaned and reassembled recently and ordered the OS disk and 
cables from Arcade Shopper.  Today I made my first attempt at a connection.


Dug  out a Commodore 1084 CRT which has an RCA video input and tried to 
connect to a Model 102, but couldn't figure out where to connect.  I 
have the RS DVI manual but it only mentions connecting to the Model 
100.  Suggestions?


There are several types of cable at arcadeshopper.
If you got a one-piece cable with the DIP plug for a 100, then that 
cable only wirks on a 100.


There are also cables that only fit 102, and a cable that fits 102 and 
200, and a 3-part kit that supports everything 100, 102, and 200.


If you got the 3-part cable kit, then it's obvious what to do, because 
it can't be connected any other way. There is one cable part that is a 
female-to-female 40-pin cable, and a little male-male adapter (which 
isn't just a gender-changer, it swaps wires around, don't try to use it 
as a gender-changer for any other 40-pin cables like to a hard drive!)
You plug the long cable into the DVI, plug the adapter on the free end, 
plug that into the 102.


Lots of pictures of the different cables and how they connect here
http://tandy.wiki/Disk/Video_Interface:_Cable

If you don't have the 3-part cable, or the dedicated T102 cable or the 
102/200 cable, then maybe you have the parts to build one of the several 
versions shown there.




So I switched to the Model 100.  Following the startup procedure from 
the manual I got as far as issuing the BASIC command SCREEN 1,1 and got 
an "FC" error.  Back to square one.


I made a video of the process of booting up the dvi.
It's a bit slow at first because I was reading the manual for the first 
time myself.

https://photos.app.goo.gl/Jy1hXhc3aSbkcaFr6





Shut down everything and checked the cable connection to the Model 100, 
which was apparently loose.  Reconnected, powered up, loaded DOS, reset 
the M100 and this time the drive loaded Disk BASIC.


Ran a few programs on the CRT, used the backup utility to create another 
system disk and checked that off my list.  This is a whole new ballgame 
with the M100 backed by a CRT and twin disks.


Ok you don't need that video ;)

Do you have a 200? And did you get the 100 or the 100/200 version of the 
disk?


If make backups of the 100/200 disk on a 100 or 102, the backup disk is 
a bad disk. It will work, but only on 100 & 102. The problem is it will 
*look* like a 100/200 disk because it has *.200 files on it, and it will 
*look* like a good copy because it will boot fine on your 100 or 102, 
but the copies will not boot on a 200. That will make someone think they 
have a bad dvi or bad drives or bad 200 some day.


Anyone buying these disks, I suggest if you don't have a 200, then don't 
get the 100/200 version of the disk. And if you do have a 200, then get 
the 100/200 version of the disk, and only use the 200 to make copies of it.



--
bkw



Thanks, all, for your help.

Next: communication with the Model III and Model 4.

-CH-



 
	Virus-free. www.avg.com 
 



<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>



--
bkw


Re: [M100] DVI shakedown

2020-04-01 Thread Kevin Becker
I don't have a DVI but the m102 should connect to the System Bus
connector on the back.
On Wed, 2020-04-01 at 10:33 -0400, Charles Hudson wrote:
> Got the DVI cleaned and reassembled recently and ordered the OS disk
> and cables from Arcade Shopper.  Today I made my first attempt at a
> connection.
> 
> Dug  out a Commodore 1084 CRT which has an RCA video input and tried
> to connect to a Model 102, but couldn't figure out where to connect. 
> I have the RS DVI manual but it only mentions connecting to the Model
> 100.  Suggestions?
> 
> So I switched to the Model 100.  Following the startup procedure from
> the manual I got as far as issuing the BASIC command SCREEN 1,1 and
> got an "FC" error.  Back to square one.
> 
> Shut down everything and checked the cable connection to the Model
> 100, which was apparently loose.  Reconnected, powered up, loaded
> DOS, reset the M100 and this time the drive loaded Disk BASIC.
> 
> Ran a few programs on the CRT, used the backup utility to create
> another system disk and checked that off my list.  This is a whole
> new ballgame with the M100 backed by a CRT and twin disks.
> 
> Thanks, all, for your help.
> 
> Next: communication with the Model III and Model 4.
> 
> -CH-
> 
> 
> 
> 
> 
>   
> 
>   Virus-free. www.avg.com
>   
>   
> 


[M100] DVI shakedown

2020-04-01 Thread Charles Hudson
Got the DVI cleaned and reassembled recently and ordered the OS disk and
cables from Arcade Shopper.  Today I made my first attempt at a connection.

Dug  out a Commodore 1084 CRT which has an RCA video input and tried to
connect to a Model 102, but couldn't figure out where to connect.  I have
the RS DVI manual but it only mentions connecting to the Model 100.
Suggestions?

So I switched to the Model 100.  Following the startup procedure from the
manual I got as far as issuing the BASIC command SCREEN 1,1 and got an "FC"
error.  Back to square one.

Shut down everything and checked the cable connection to the Model 100,
which was apparently loose.  Reconnected, powered up, loaded DOS, reset the
M100 and this time the drive loaded Disk BASIC.

Ran a few programs on the CRT, used the backup utility to create another
system disk and checked that off my list.  This is a whole new ballgame
with the M100 backed by a CRT and twin disks.

Thanks, all, for your help.

Next: communication with the Model III and Model 4.

-CH-




Virus-free.
www.avg.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>


[M100] DVI

2020-03-28 Thread dano none
>See I had no idea the DVI had it's own dedicated CPU, I just assumed the
>M100 was calling all the shots. But I suppose that does make sense,
>after all its not just a disk filing system it's having to handle, but
>video output as well.

This is a pretty easy unit to open up (I didn't say work on =).
Pretty much four large screws and slide the case off.

I recently won one of ebay and before powering it up - sans M100,
I opened the case - found a dead spider and his web - he didn't
shake loose in shipping and that the ground plug for the drive had
come lose, might have been before shipping.

I vacuumed up Mr. Spider and his nest and hit the floppy connections
with some deoxit and re-plugged in the grounding lug and powered
it up. It came up fine. I did get in some replacement DVI cables from
Arcade Shopper but have not connected a working M100 yet.

d.


Re: [M100] DVI cable length

2020-03-14 Thread Jim Anderson
> -Original Message-
> 
> Sadly it is from.an era long before small system standards.  How cool
> would the world be if we could have standardised on a single floppy
> format.
> 
> We couldn't even get RS232 right

Reminds me of a favourite old saying... "Standards are great!  That's why we 
have so many of them!"







jim



Re: [M100] DVI cable length

2020-03-14 Thread Brian K. White

On 3/13/20 7:56 PM, James Zeun wrote:
You know what, it's very tempting as I find soldering very cathartic. 
But the cable is ordered now.


I'm gutted the DVI writes floppys in a different format to the TPDD. 
Curse you Tandy!


It's really the TPDD that is weird. It's not just a different data 
layout, it's a different magnetic signal. The TPDD drive really was just 
meant for the knitting machines first, which didn't need to try to 
adhere to any kind of interoperability standard beyond the physical 
media. But the hardware was cheap and the connection was ttl serial, and 
the protocol was easy, and so I guess it was irresistable to try to doll 
it up into a storage device for the M100's because anything was better 
than the cassettes.


But DVI is, not standard, but at least almost standard, or more 
standard. At least normal drives and drive controllers (old ones anyway) 
can at least read the tracks in the normal way without Kryoflux.



On Fri, 13 Mar 2020, 6:16 pm Brian K. White, > wrote:


On 3/13/20 5:15 AM, James Zeun wrote:
 > Well of course I knew I could buy a £4 cable and save myself half an
 > hour soldering 40 wires, well 80! What do you take me for some
sort of
 > idiot? *Cough* :-P
 >
 > There's always someone with a bright idea. Well I'm going to make
coffee
 > and try to not feel too disappointed about all that soldering I'm
 > missing out on, now I have a 30cm extension cable ordered.
 >
 > *Goes off grumbling to himself*
 >
 > Thanks Brian! ;-)

Someone else said splice you didn't, but in this same conversation,
so I
just addressed it all in one post.

Are you *sure* you don't want to perform 80 solder and heat-shrink
splices? It can be very zen. :)

-- 
bkw


 > On Fri, 13 Mar 2020, 5:34 am Brian White, mailto:b.kenyo...@gmail.com>
 > >> wrote:
 >
 >     It's easier than that. If you take pretty much any idc
connector and
 >     put it back to back or hed yo head with another, the end
result is
 >     the "twist" where pin 1 switches places with pin 40, pin 2
switches
 >     places with pin 39, etc.
 >
 >     What I mean by "any idc" is, for instance, a wire-to-board
back to
 >     back with a male pin header. That makes a Model 102 or 200 cable.
 >
 >

http://tandy.wiki/Disk/Video_Interface:_Cable#Cable_supporting_models_102_and_200_only
 >
 >     Another form of the same thing is if you put 2 male pin
headers back
 >     to back, that makes an adapter that can serve as the the
twisty part
 >     on a cable set that works on all 3 models.
 >
 > http://tandy.wiki/Disk/Video_Interface:_Cable
 >
 >     Or head to head: Mike Stein showed me (well everyone) that if you
 >     just take any standard 40 pin cables and butt two female ends
face
 >     to face with a "gender changer" pin header, that results in
the same
 >     twist.
 >
 >     That page above has links to buy all the odd parts for the
different
 >     ways to do it.
 >
 >     But for a pcb to do the switcheroo, the pcb is nothing more
than 40
 >     straight lines just to make it easier to solder two plugs back to
 >     back. See the "twist adapter" link in that page.
 >
 >     You don't have to splice anything to make the cable longer.
Just buy
 >     or make a bog-standard 40 pin male-female extension cable,
and stick
 >     it on the DVI end of the cable. They are readily available
pre-made
 >     and cheap these days in the form of "gpio" cables for arduino or
 >     raspberry pi.
 >
 >     You can search "male female gpio" or similar on ebay or just
pick a
 >     length here:
 >
 > http://www.cablesonline.com/240pinidedir.html
 >
 >     --
 >     bkw
 >
 >     On Thu, Mar 12, 2020, 5:33 PM RETRO Innovations
 >     mailto:go4re...@go4retro.com>
>> wrote:
 >
 >         On 3/12/2020 4:17 PM, Mike Stein wrote:
 >>         
 >>         Hi Jim,
 >>         I wouldn't call it a newbie mistake ;-) Those 'non-standard'
 >>         40-pin DIP headers have been impossible to find; maybe with
 >>         your resources you can find some somewhere so they can just
 >>         simply be crimped on.
 >
 >         I'm wondering if the switch could be made at the other
end, with
 >         a small PCB and the respective female header attached to
it...
 >
 >


-- 
bkw





--
bkw


Re: [M100] DVI cable length

2020-03-14 Thread Greg Swallow

All:

Been crazy business at work, so catching up a bit on this one. Don't 
know how much help this might be, but it is what I have experienced.


I have two M100 as portable and another that stays connected to the DVI 
due to the DVI_DOS vs REX_MGR issue. Am already used to similar DVI 
problems from using PCSG ROMs with the DVI. Lucid at 80 columns and 25 
lines would be so nice. I am presently converting my Windows computers 
to openSuse Linux -- one more to go, and have no target for TS-DOS. 
Could connect M100 to M100, but that is an issue due to limited work 
space. So, I also have a CCR-81 connected to the DVI M100 and carry a 
Sharp when portable. Cassette storage seems to unaffected by anything 
else involved. Was able to find a handful of NOS Maxell UR60 audio 
cassettes at GoodWill for only $1.29 each for quite a bit of portable 
storage. Splicing is the easiest way to get rid of the leader. A little 
bulking, but it works.


Would have preferred the format of diskettes to be the same between 
portable and DVI. Especially since I have swapped out 5.25 for 3.5 inch 
(1.44MB) drives in the DVI. Am thinking I might plunge and get the GoTek 
USB floppy adapter to try in the DVI, but a again portable and DVI would 
be different formats.


As for cable length? I used an old IDE cable and extender -- not EIDE, 
to make a M100 to DVI set using Mike Stein's instruction here: 
http://tandy.wiki/Disk/Video_Interface:_Cable . The Male/Male joiner 
allows for easy swapping between M100 & M102 as well. My total cable 
length is something like 18 inches with no foil/shielding, Haven't had 
any dropped bits as of yet.



God bless,

GregS <><

On 3/14/20 3:39 AM, Josh Malone wrote:
On Sat, Mar 14, 2020, 5:22 AM > wrote:


Well the DVI won’t work with REX manager loaded in the computers
memory. Which means, if I write a document and it’s relatively
large. My options are, save it to floppy on the DVI or store it in
memory and hope that there is enough free ram to load REX manager
so I can load in the TS-DOS rom.


You don't need to load REXMGR to load TS-DOS - just load TS-DOS and 
then unload REXMGR before connecting the DVI.




Re: [M100] DVI cable length

2020-03-14 Thread B4 Me100
You may want to take a look at the
http://www.club100.org/library/libdrv.html archive.  It has a few programs
that seem to swap the DVI and TS-DOS.  I have not used any of them but there
might be something of use?

From:  M100  on behalf of

Reply-To:  
Date:  Saturday, March 14, 2020 at 2:22 AM
To:  
Subject:  Re: [M100] DVI cable length

> Well the DVI won’t work with REX manager loaded in the computers memory. Which
> means, if I write a document and it’s relatively large. My options are, save
> it to floppy on the DVI or store it in memory and hope that there is enough
> free ram to load REX manager so I can load in the TS-DOS rom. Then I can
> transfer the document off the computer and on to SD card.
> 
> IF the DVI had saved in a TPDD format, it would have been a piece of cake.
> 1. Save to disk
> 2. Unhook DVI
> 3. Load REX back in to memory
> 4. Connect TPDD2 and retrieve saved file
> 
> 
> Sent from my iPad
> 
>> On 14 Mar 2020, at 1:16 am, Mike Stein  wrote:
>> 
>>  
>> - Original Message -
>> From: James Zeun
>> To: m...@bitchin100.com
>> Sent: Friday, March 13, 2020 7:56 PM
>> Subject: Re: [M100] DVI cable length
>> 
>> 
>>> > I'm gutted the DVI writes floppys in a different format to the TPDD. Curse
>>> you Tandy!
>>  
>> Just curious; what'd you have in mind?
>> 
>> 




Re: [M100] DVI cable length

2020-03-14 Thread Josh Malone
On Sat, Mar 14, 2020, 5:22 AM  wrote:

> Well the DVI won’t work with REX manager loaded in the computers memory.
> Which means, if I write a document and it’s relatively large. My options
> are, save it to floppy on the DVI or store it in memory and hope that there
> is enough free ram to load REX manager so I can load in the TS-DOS rom.
>

You don't need to load REXMGR to load TS-DOS - just load TS-DOS and then
unload REXMGR before connecting the DVI.

>


Re: [M100] DVI cable length

2020-03-14 Thread james . zeun
Well the DVI won’t work with REX manager loaded in the computers memory. Which 
means, if I write a document and it’s relatively large. My options are, save it 
to floppy on the DVI or store it in memory and hope that there is enough free 
ram to load REX manager so I can load in the TS-DOS rom. Then I can transfer 
the document off the computer and on to SD card.

IF the DVI had saved in a TPDD format, it would have been a piece of cake. 
1. Save to disk
2. Unhook DVI
3. Load REX back in to memory
4. Connect TPDD2 and retrieve saved file


Sent from my iPad

> On 14 Mar 2020, at 1:16 am, Mike Stein  wrote:
> 
> 
> - Original Message - 
> From: James Zeun 
> To: m...@bitchin100.com 
> Sent: Friday, March 13, 2020 7:56 PM
> Subject: Re: [M100] DVI cable length
> 
> 
> > I'm gutted the DVI writes floppys in a different format to the TPDD. Curse 
> > you Tandy!
>  
> Just curious; what'd you have in mind?
> 
> 


Re: [M100] DVI cable length

2020-03-13 Thread Mike Stein
- Original Message - 
From: James Zeun 
To: m...@bitchin100.com 
Sent: Friday, March 13, 2020 7:56 PM
Subject: Re: [M100] DVI cable length


> I'm gutted the DVI writes floppys in a different format to the TPDD. Curse 
> you Tandy!

Just curious; what'd you have in mind?




Re: [M100] DVI cable length

2020-03-13 Thread Doug Jackson
Sigh...

Sadly it is from.an era long before small system standards.  How cool would
the world be if we could have standardised on a single floppy format.

We couldn't even get RS232 right

On Sat, 14 Mar. 2020, 10:56 am James Zeun,  wrote:

> You know what, it's very tempting as I find soldering very cathartic. But
> the cable is ordered now.
>
> I'm gutted the DVI writes floppys in a different format to the TPDD. Curse
> you Tandy!
>
>
>
> On Fri, 13 Mar 2020, 6:16 pm Brian K. White,  wrote:
>
>> On 3/13/20 5:15 AM, James Zeun wrote:
>> > Well of course I knew I could buy a £4 cable and save myself half an
>> > hour soldering 40 wires, well 80! What do you take me for some sort of
>> > idiot? *Cough* :-P
>> >
>> > There's always someone with a bright idea. Well I'm going to make
>> coffee
>> > and try to not feel too disappointed about all that soldering I'm
>> > missing out on, now I have a 30cm extension cable ordered.
>> >
>> > *Goes off grumbling to himself*
>> >
>> > Thanks Brian! ;-)
>>
>> Someone else said splice you didn't, but in this same conversation, so I
>> just addressed it all in one post.
>>
>> Are you *sure* you don't want to perform 80 solder and heat-shrink
>> splices? It can be very zen. :)
>>
>> --
>> bkw
>>
>> > On Fri, 13 Mar 2020, 5:34 am Brian White, > > > wrote:
>> >
>> > It's easier than that. If you take pretty much any idc connector and
>> > put it back to back or hed yo head with another, the end result is
>> > the "twist" where pin 1 switches places with pin 40, pin 2 switches
>> > places with pin 39, etc.
>> >
>> > What I mean by "any idc" is, for instance, a wire-to-board back to
>> > back with a male pin header. That makes a Model 102 or 200 cable.
>> >
>> >
>> http://tandy.wiki/Disk/Video_Interface:_Cable#Cable_supporting_models_102_and_200_only
>> >
>> > Another form of the same thing is if you put 2 male pin headers back
>> > to back, that makes an adapter that can serve as the the twisty part
>> > on a cable set that works on all 3 models.
>> >
>> > http://tandy.wiki/Disk/Video_Interface:_Cable
>> >
>> > Or head to head: Mike Stein showed me (well everyone) that if you
>> > just take any standard 40 pin cables and butt two female ends face
>> > to face with a "gender changer" pin header, that results in the same
>> > twist.
>> >
>> > That page above has links to buy all the odd parts for the different
>> > ways to do it.
>> >
>> > But for a pcb to do the switcheroo, the pcb is nothing more than 40
>> > straight lines just to make it easier to solder two plugs back to
>> > back. See the "twist adapter" link in that page.
>> >
>> > You don't have to splice anything to make the cable longer. Just buy
>> > or make a bog-standard 40 pin male-female extension cable, and stick
>> > it on the DVI end of the cable. They are readily available pre-made
>> > and cheap these days in the form of "gpio" cables for arduino or
>> > raspberry pi.
>> >
>> > You can search "male female gpio" or similar on ebay or just pick a
>> > length here:
>> >
>> > http://www.cablesonline.com/240pinidedir.html
>> >
>> > --
>> > bkw
>> >
>> > On Thu, Mar 12, 2020, 5:33 PM RETRO Innovations
>> > mailto:go4re...@go4retro.com>> wrote:
>> >
>> > On 3/12/2020 4:17 PM, Mike Stein wrote:
>> >> 
>> >> Hi Jim,
>> >> I wouldn't call it a newbie mistake ;-) Those 'non-standard'
>> >> 40-pin DIP headers have been impossible to find; maybe with
>> >> your resources you can find some somewhere so they can just
>> >> simply be crimped on.
>> >
>> > I'm wondering if the switch could be made at the other end, with
>> > a small PCB and the respective female header attached to it...
>> >
>> >
>>
>>
>> --
>> bkw
>>
>


Re: [M100] DVI cable length

2020-03-13 Thread James Zeun
You know what, it's very tempting as I find soldering very cathartic. But
the cable is ordered now.

I'm gutted the DVI writes floppys in a different format to the TPDD. Curse
you Tandy!



On Fri, 13 Mar 2020, 6:16 pm Brian K. White,  wrote:

> On 3/13/20 5:15 AM, James Zeun wrote:
> > Well of course I knew I could buy a £4 cable and save myself half an
> > hour soldering 40 wires, well 80! What do you take me for some sort of
> > idiot? *Cough* :-P
> >
> > There's always someone with a bright idea. Well I'm going to make coffee
> > and try to not feel too disappointed about all that soldering I'm
> > missing out on, now I have a 30cm extension cable ordered.
> >
> > *Goes off grumbling to himself*
> >
> > Thanks Brian! ;-)
>
> Someone else said splice you didn't, but in this same conversation, so I
> just addressed it all in one post.
>
> Are you *sure* you don't want to perform 80 solder and heat-shrink
> splices? It can be very zen. :)
>
> --
> bkw
>
> > On Fri, 13 Mar 2020, 5:34 am Brian White,  > > wrote:
> >
> > It's easier than that. If you take pretty much any idc connector and
> > put it back to back or hed yo head with another, the end result is
> > the "twist" where pin 1 switches places with pin 40, pin 2 switches
> > places with pin 39, etc.
> >
> > What I mean by "any idc" is, for instance, a wire-to-board back to
> > back with a male pin header. That makes a Model 102 or 200 cable.
> >
> >
> http://tandy.wiki/Disk/Video_Interface:_Cable#Cable_supporting_models_102_and_200_only
> >
> > Another form of the same thing is if you put 2 male pin headers back
> > to back, that makes an adapter that can serve as the the twisty part
> > on a cable set that works on all 3 models.
> >
> > http://tandy.wiki/Disk/Video_Interface:_Cable
> >
> > Or head to head: Mike Stein showed me (well everyone) that if you
> > just take any standard 40 pin cables and butt two female ends face
> > to face with a "gender changer" pin header, that results in the same
> > twist.
> >
> > That page above has links to buy all the odd parts for the different
> > ways to do it.
> >
> > But for a pcb to do the switcheroo, the pcb is nothing more than 40
> > straight lines just to make it easier to solder two plugs back to
> > back. See the "twist adapter" link in that page.
> >
> > You don't have to splice anything to make the cable longer. Just buy
> > or make a bog-standard 40 pin male-female extension cable, and stick
> > it on the DVI end of the cable. They are readily available pre-made
> > and cheap these days in the form of "gpio" cables for arduino or
> > raspberry pi.
> >
> > You can search "male female gpio" or similar on ebay or just pick a
> > length here:
> >
> > http://www.cablesonline.com/240pinidedir.html
> >
> > --
> > bkw
> >
> > On Thu, Mar 12, 2020, 5:33 PM RETRO Innovations
> > mailto:go4re...@go4retro.com>> wrote:
> >
> > On 3/12/2020 4:17 PM, Mike Stein wrote:
> >> 
> >> Hi Jim,
> >> I wouldn't call it a newbie mistake ;-) Those 'non-standard'
> >> 40-pin DIP headers have been impossible to find; maybe with
> >> your resources you can find some somewhere so they can just
> >> simply be crimped on.
> >
> > I'm wondering if the switch could be made at the other end, with
> > a small PCB and the respective female header attached to it...
> >
> >
>
>
> --
> bkw
>


Re: [M100] DVI cable length

2020-03-13 Thread Brian K. White

On 3/13/20 5:15 AM, James Zeun wrote:
Well of course I knew I could buy a £4 cable and save myself half an 
hour soldering 40 wires, well 80! What do you take me for some sort of 
idiot? *Cough* :-P


There's always someone with a bright idea. Well I'm going to make coffee 
and try to not feel too disappointed about all that soldering I'm 
missing out on, now I have a 30cm extension cable ordered.


*Goes off grumbling to himself*

Thanks Brian! ;-)


Someone else said splice you didn't, but in this same conversation, so I 
just addressed it all in one post.


Are you *sure* you don't want to perform 80 solder and heat-shrink 
splices? It can be very zen. :)


--
bkw

On Fri, 13 Mar 2020, 5:34 am Brian White, > wrote:


It's easier than that. If you take pretty much any idc connector and
put it back to back or hed yo head with another, the end result is
the "twist" where pin 1 switches places with pin 40, pin 2 switches
places with pin 39, etc.

What I mean by "any idc" is, for instance, a wire-to-board back to
back with a male pin header. That makes a Model 102 or 200 cable.


http://tandy.wiki/Disk/Video_Interface:_Cable#Cable_supporting_models_102_and_200_only

Another form of the same thing is if you put 2 male pin headers back
to back, that makes an adapter that can serve as the the twisty part
on a cable set that works on all 3 models.

http://tandy.wiki/Disk/Video_Interface:_Cable

Or head to head: Mike Stein showed me (well everyone) that if you
just take any standard 40 pin cables and butt two female ends face
to face with a "gender changer" pin header, that results in the same
twist.

That page above has links to buy all the odd parts for the different
ways to do it.

But for a pcb to do the switcheroo, the pcb is nothing more than 40
straight lines just to make it easier to solder two plugs back to
back. See the "twist adapter" link in that page.

You don't have to splice anything to make the cable longer. Just buy
or make a bog-standard 40 pin male-female extension cable, and stick
it on the DVI end of the cable. They are readily available pre-made
and cheap these days in the form of "gpio" cables for arduino or
raspberry pi.

You can search "male female gpio" or similar on ebay or just pick a
length here:

http://www.cablesonline.com/240pinidedir.html

-- 
bkw


On Thu, Mar 12, 2020, 5:33 PM RETRO Innovations
mailto:go4re...@go4retro.com>> wrote:

On 3/12/2020 4:17 PM, Mike Stein wrote:


Hi Jim,
I wouldn't call it a newbie mistake ;-) Those 'non-standard'
40-pin DIP headers have been impossible to find; maybe with
your resources you can find some somewhere so they can just
simply be crimped on.


I'm wondering if the switch could be made at the other end, with
a small PCB and the respective female header attached to it...





--
bkw


Re: [M100] DVI cable length

2020-03-13 Thread Jim Anderson
> -Original Message-
> 
> I'm displaying the DVI through RF or UHF if you prefer and the picture
> while a little fuzzy is perfectly acceptable given the age. I've not
> actually look in to the DVI's other video output option, which I think
> was intended for Tandy branded monitors. 

The video monitor output produces an NTSC compatible composite video signal, so 
it could be fed into any TV which accepts NTSC composite (usually a yellow RCA 
jack).  The RF output is just taking the monitor output signal and modulating 
it to the broadcast TV frequency for US channel 3 or 4 (based on the setting of 
the switch).

> Random question does the DVI save data to floppy disk in the same format
> as the TPDD?

Sorry, it does not.  (Even if you installed a 3.5" disk drive in the DVI.)







jim


Re: [M100] DVI cable length

2020-03-13 Thread James Zeun
Well of course I knew I could buy a £4 cable and save myself half an hour
soldering 40 wires, well 80! What do you take me for some sort of idiot?
*Cough* :-P

There's always someone with a bright idea. Well I'm going to make coffee
and try to not feel too disappointed about all that soldering I'm missing
out on, now I have a 30cm extension cable ordered.

*Goes off grumbling to himself*

Thanks Brian! ;-)






On Fri, 13 Mar 2020, 5:34 am Brian White,  wrote:

> It's easier than that. If you take pretty much any idc connector and put
> it back to back or hed yo head with another, the end result is the "twist"
> where pin 1 switches places with pin 40, pin 2 switches places with pin 39,
> etc.
>
> What I mean by "any idc" is, for instance, a wire-to-board back to back
> with a male pin header. That makes a Model 102 or 200 cable.
>
>
> http://tandy.wiki/Disk/Video_Interface:_Cable#Cable_supporting_models_102_and_200_only
>
> Another form of the same thing is if you put 2 male pin headers back to
> back, that makes an adapter that can serve as the the twisty part on a
> cable set that works on all 3 models.
>
> http://tandy.wiki/Disk/Video_Interface:_Cable
>
> Or head to head: Mike Stein showed me (well everyone) that if you just
> take any standard 40 pin cables and butt two female ends face to face with
> a "gender changer" pin header, that results in the same twist.
>
> That page above has links to buy all the odd parts for the different ways
> to do it.
>
> But for a pcb to do the switcheroo, the pcb is nothing more than 40
> straight lines just to make it easier to solder two plugs back to back. See
> the "twist adapter" link in that page.
>
> You don't have to splice anything to make the cable longer. Just buy or
> make a bog-standard 40 pin male-female extension cable, and stick it on the
> DVI end of the cable. They are readily available pre-made and cheap these
> days in the form of "gpio" cables for arduino or raspberry pi.
>
> You can search "male female gpio" or similar on ebay or just pick a length
> here:
>
> http://www.cablesonline.com/240pinidedir.html
>
> --
> bkw
>
> On Thu, Mar 12, 2020, 5:33 PM RETRO Innovations 
> wrote:
>
>> On 3/12/2020 4:17 PM, Mike Stein wrote:
>>
>> 
>> Hi Jim,
>>
>> I wouldn't call it a newbie mistake ;-) Those 'non-standard' 40-pin DIP
>> headers have been impossible to find; maybe with your resources you can
>> find some somewhere so they can just simply be crimped on.
>>
>>
>> I'm wondering if the switch could be made at the other end, with a small
>> PCB and the respective female header attached to it...
>>
>>


Re: [M100] DVI cable length

2020-03-12 Thread Brian White
It's easier than that. If you take pretty much any idc connector and put it
back to back or hed yo head with another, the end result is the "twist"
where pin 1 switches places with pin 40, pin 2 switches places with pin 39,
etc.

What I mean by "any idc" is, for instance, a wire-to-board back to back
with a male pin header. That makes a Model 102 or 200 cable.

http://tandy.wiki/Disk/Video_Interface:_Cable#Cable_supporting_models_102_and_200_only

Another form of the same thing is if you put 2 male pin headers back to
back, that makes an adapter that can serve as the the twisty part on a
cable set that works on all 3 models.

http://tandy.wiki/Disk/Video_Interface:_Cable

Or head to head: Mike Stein showed me (well everyone) that if you just take
any standard 40 pin cables and butt two female ends face to face with a
"gender changer" pin header, that results in the same twist.

That page above has links to buy all the odd parts for the different ways
to do it.

But for a pcb to do the switcheroo, the pcb is nothing more than 40
straight lines just to make it easier to solder two plugs back to back. See
the "twist adapter" link in that page.

You don't have to splice anything to make the cable longer. Just buy or
make a bog-standard 40 pin male-female extension cable, and stick it on the
DVI end of the cable. They are readily available pre-made and cheap these
days in the form of "gpio" cables for arduino or raspberry pi.

You can search "male female gpio" or similar on ebay or just pick a length
here:

http://www.cablesonline.com/240pinidedir.html

-- 
bkw

On Thu, Mar 12, 2020, 5:33 PM RETRO Innovations 
wrote:

> On 3/12/2020 4:17 PM, Mike Stein wrote:
>
> 
> Hi Jim,
>
> I wouldn't call it a newbie mistake ;-) Those 'non-standard' 40-pin DIP
> headers have been impossible to find; maybe with your resources you can
> find some somewhere so they can just simply be crimped on.
>
>
> I'm wondering if the switch could be made at the other end, with a small
> PCB and the respective female header attached to it...
>
>


Re: [M100] DVI cable length

2020-03-12 Thread Mike Stein
If the correct DIP plug really can't be found there is my kludge of adding an 
F-F piece of cable connected with an M-M dual header to reverse the pinout; 
there's also a simple pcb on Oshpark to do the same thing, but neater:

https://oshpark.com/shared_projects/EoeBHp2k

m
  - Original Message - 
  From: RETRO Innovations 
  To: m100@lists.bitchin100.com 
  Sent: Thursday, March 12, 2020 5:33 PM
  Subject: Re: [M100] DVI cable length


  On 3/12/2020 4:17 PM, Mike Stein wrote:

 
Hi Jim, 

I wouldn't call it a newbie mistake ;-) Those 'non-standard' 40-pin DIP 
headers have been impossible to find; maybe with your resources you can find 
some somewhere so they can just simply be crimped on.

  I'm wondering if the switch could be made at the other end, with a small PCB 
and the respective female header attached to it...




Re: [M100] DVI cable length

2020-03-12 Thread RETRO Innovations

On 3/12/2020 4:17 PM, Mike Stein wrote:


Hi Jim,
I wouldn't call it a newbie mistake ;-) Those 'non-standard' 40-pin 
DIP headers have been impossible to find; maybe with your resources 
you can find some somewhere so they can just simply be crimped on.


I'm wondering if the switch could be made at the other end, with a small 
PCB and the respective female header attached to it...





Re: [M100] DVI cable length

2020-03-12 Thread Mike Stein
Hi Jim, 

I wouldn't call it a newbie mistake ;-) Those 'non-standard' 40-pin DIP headers 
have been impossible to find; maybe with your resources you can find some 
somewhere so they can just simply be crimped on.

I did find the original mfg. at one point but they didn't know anything about 
it.

Nice to see you at WoC last year, BTW; glad you could make it.

m


  - Original Message - 
  From: RETRO Innovations 
  To: m100@lists.bitchin100.com 
  Sent: Thursday, March 12, 2020 3:20 PM
  Subject: Re: [M100] DVI cable length


  On 3/12/2020 12:08 PM, James Zeun wrote:

The home made cable that came with the DVI kept dropping connection, as I 
have a replacement I don't feel so bad about experimenting with it. 

  I'm to blame, and I thought I should note it before someone else gets caught

  I have a TANDY cable, and 2 DVIs (package buy, as I recall).  I know how 
useless the DVI is without a cable, so I took a spot of IDE cable and purchased 
a 40 pin IDC header on Digikey to make up a second cable, test it, and then 
sell the unit.

  Notes:

a.. Stupid issue.  Forgot about the key in some IDE cables.  Not all have 
the key, the spare I selected had one.  No major issue, a bit of drill action 
and that's done (the cable has the connector in that spot, just covered with 
plastic) 
b.. More nuanced issue.  The headers from Digikey have the first wire going 
to pin 1, second to pin 40, etc.  But, as I recall, the Model 100 needs the 
first wire to to go to pin 40, then 1, then 39, etc. (might be backwards on the 
numbering, but hopefully the text illustrates the mirroring).  Anyway, I had to 
pull the unit apart, cut the cable into 2 strand sections, twist them, and then 
re-assemble.  

  I assume I made a newbie mistake on the header I needed to buy, but maybe 
this helps the next person wanting to construct a cable (or cable-like item)

  Jim





-- 
RETRO Innovations, Contemporary Gear for Classic Systems
www.go4retro.com
store.go4retro.com

Re: [M100] DVI cable length

2020-03-12 Thread James Zeun
Jim the header you used to connect to the underside of the M100 is pretty
darn sturdy, I'm not sure why it was acting up. Best guess it a loose wire
some where or something like that, I'll check it out with my meter when I
get started on this.
Still I'm going to re-purpose it and try make a new, extended super DVI
cable, which will hopefully allow me to use the DVI the way I want to.

For those who might like to know, thus far using the US DVI here in the UK
has been a breeze. I'm using a step down brick for now, with a new PSU on
the way. See link to new dual output PSU
https://www.aliexpress.com/item/32981279958.html?spm=a2g0s.9042311.0.0.72964c4deypKfb

Hopefully when this arrives, it will be (fingers firmly crossed) an easy
job of swapping out the old US power supply with the new one and thus
eliminating the need for the step down brick.
I'm displaying the DVI through RF or UHF if you prefer and the picture
while a little fuzzy is perfectly acceptable given the age. I've not
actually look in to the DVI's other video output option, which I think was
intended for Tandy branded monitors. I'm slowly figuring out a method for
using the unit for writing, while being able to get the created document on
to my NADSbox. I use the M100 for creative writing and also doing articles
for my blog, so one way or the other the document needs to end up on SD
card.

Random question does the DVI save data to floppy disk in the same format as
the TPDD?



On Thu, 12 Mar 2020 at 19:21, RETRO Innovations 
wrote:

> On 3/12/2020 12:08 PM, James Zeun wrote:
>
> The home made cable that came with the DVI kept dropping connection, as I
> have a replacement I don't feel so bad about experimenting with it.
>
> I'm to blame, and I thought I should note it before someone else gets
> caught
>
> I have a TANDY cable, and 2 DVIs (package buy, as I recall).  I know how
> useless the DVI is without a cable, so I took a spot of IDE cable and
> purchased a 40 pin IDC header on Digikey to make up a second cable, test
> it, and then sell the unit.
>
> Notes:
>
>- Stupid issue.  Forgot about the key in some IDE cables.  Not all
>have the key, the spare I selected had one.  No major issue, a bit of drill
>action and that's done (the cable has the connector in that spot, just
>covered with plastic)
>- More nuanced issue.  The headers from Digikey have the first wire
>going to pin 1, second to pin 40, etc.  But, as I recall, the Model 100
>needs the first wire to to go to pin 40, then 1, then 39, etc. (might be
>backwards on the numbering, but hopefully the text illustrates the
>mirroring).  Anyway, I had to pull the unit apart, cut the cable into 2
>strand sections, twist them, and then re-assemble.
>
> I assume I made a newbie mistake on the header I needed to buy, but maybe
> this helps the next person wanting to construct a cable (or cable-like item)
>
> Jim
>
>
> --
> RETRO Innovations, Contemporary Gear for Classic 
> Systemswww.go4retro.comstore.go4retro.com
>
>

-- 
My retro tech blog and general ramblings
http://bytemyvdu.wordpress.com/


Re: [M100] DVI cable length

2020-03-12 Thread RETRO Innovations

On 3/12/2020 12:08 PM, James Zeun wrote:
The home made cable that came with the DVI kept dropping connection, 
as I have a replacement I don't feel so bad about experimenting with it.


I'm to blame, and I thought I should note it before someone else gets caught

I have a TANDY cable, and 2 DVIs (package buy, as I recall).  I know how 
useless the DVI is without a cable, so I took a spot of IDE cable and 
purchased a 40 pin IDC header on Digikey to make up a second cable, test 
it, and then sell the unit.


Notes:

 * Stupid issue.  Forgot about the key in some IDE cables.  Not all
   have the key, the spare I selected had one.  No major issue, a bit
   of drill action and that's done (the cable has the connector in that
   spot, just covered with plastic)
 * More nuanced issue.  The headers from Digikey have the first wire
   going to pin 1, second to pin 40, etc.  But, as I recall, the Model
   100 needs the first wire to to go to pin 40, then 1, then 39, etc.
   (might be backwards on the numbering, but hopefully the text
   illustrates the mirroring).  Anyway, I had to pull the unit apart,
   cut the cable into 2 strand sections, twist them, and then re-assemble.

I assume I made a newbie mistake on the header I needed to buy, but 
maybe this helps the next person wanting to construct a cable (or 
cable-like item)


Jim


--
RETRO Innovations, Contemporary Gear for Classic Systems
www.go4retro.com
store.go4retro.com



Re: [M100] DVI cable length

2020-03-12 Thread Mike Stein
No, my two foot cable is not shielded; as I said, I think the shielding on the 
original cables is more to satisfy the FCC about RFI than signal integrity.

It's never a good idea to splice a cable if you can avoid it, but I think if 
you're careful you'll probably get away with it.

m
  - Original Message - 
  From: James Zeun 
  To: m...@bitchin100.com 
  Sent: Thursday, March 12, 2020 1:08 PM
  Subject: Re: [M100] DVI cable length


  Hi everyone


  I thought I'd reply to this one and reply to MikeS at the same time.


  Again sorry for the double post, I was tired and using my phone, always a bad 
combination.


  So MikeS has a 2ft long cable, I'm not sure if this is shielded or not. Mike 
can you let us know?


  Brian, yes my cable did come from Arcadeshopper, it's a lovely cable, though 
I'll be honest I'm not sure how much I trust myself before bending a pin on 
that connector :-P


  The home made cable that came with the DVI kept dropping connection, as I 
have a replacement I don't feel so bad about experimenting with it. My plan was 
to chop the IDC connector off the end and solder a new length of cable to it. 
MikeS has set the bar with his 2 foot long cable, mine shouldn't be that long 
but it will have a join in it and my experience is that where ever you solder 
two wires together, you get a drop. Whether it is enough to upset communication 
between computer and DVI is something I guess I'm going to find out.




  On Thu, 12 Mar 2020 at 16:46, Mike Stein  wrote:

The original genuine cables *were* (partially) shielded, although probably 
more for RFI prevention than signal integrity:


  - Original Message - 
  From: Brian White 
  To: m...@bitchin100.com 
  Sent: Thursday, March 12, 2020 12:01 PM
  Subject: Re: [M100] DVI cable length


  I saw the post, I just didn't know an answer better than "easy enough to 
just try it" which is not all that helpful, but I guess at least then you would 
have known your post posted. 


  Although part of the cable has special wiring and connectors, once you 
have a proper cable, it doesn't require anything special to add an extension to 
the DVI end of it.


  I'm actually already amazed that a raw system bus going out over an 
unshielded ribbon cable works at all, but I guess the DVI came enough years 
after the Model 1 expansion interface debacle that they learned how to do that 
better. ;)


  If you got a new cable from Arcade Shopper I probably built it.


  I haven't tried any long runs or done any reliability testing to find the 
longest run that not merely appears to work, but is definitely safe from 
corruption. You don't want data you can't trust, and I don't know, and wouldn't 
want to rely on, how much fancy error detection and correction is going on at 
low levels. Like does every block written or read from the disk come along with 
a checksum? Until I knew that, I would want that bus to be as clean as possible.

  -- 

  bkw


  On Thu, Mar 12, 2020, 11:04 AM James Zeun  wrote:



Hey everyone 


Think I might have messed up messaging the list last night, so I'm 
sending my post again. My apologies if it did go through.


Just a quick question, how long can a DVI link cable be? My new cable 
arrived today and while it's longer than what I had, I could still do with it 
being 20-30cm longer. I have the DVI sitting at an angle to the left of me on 
the desk, with my TV/Monitor flatscreen sitting on top of it. Using the new 
cable, it seems the intended way to use the DVI is with the M100 sat directly 
in front of it. However that isn't really comfortable nor practical with my 
setup, neither do I really want the monitor directly facing me. I regularly 
clear the center of my desk for soldering which is why the monitor sits in the 
corner out the way. 


I did get a home made cable with my DVI and while it is rather short 
(25cm), I'm wondering if I couldn't extending it another 30cm so the M100 can 
sit in front of me and the DVI to the side. 
  

As always any and all input is welcome, I'm probably going to give it a 
shot either way. I just thought I'd see if anyone new if there was a limit 
before signal loss is to much.


Cheers
James
-- 

My retro tech blog and general ramblings
http://bytemyvdu.wordpress.com/





  -- 

  My retro tech blog and general ramblings
  http://bytemyvdu.wordpress.com/


Re: [M100] DVI cable length

2020-03-12 Thread James Zeun
Hi everyone

I thought I'd reply to this one and reply to MikeS at the same time.

Again sorry for the double post, I was tired and using my phone, always a
bad combination.

So MikeS has a 2ft long cable, I'm not sure if this is shielded or not.
Mike can you let us know?

Brian, yes my cable did come from Arcadeshopper, it's a lovely cable,
though I'll be honest I'm not sure how much I trust myself before bending a
pin on that connector :-P

The home made cable that came with the DVI kept dropping connection, as I
have a replacement I don't feel so bad about experimenting with it. My plan
was to chop the IDC connector off the end and solder a new length of cable
to it. MikeS has set the bar with his 2 foot long cable, mine shouldn't be
that long but it will have a join in it and my experience is that where
ever you solder two wires together, you get a drop. Whether it is enough to
upset communication between computer and DVI is something I guess I'm going
to find out.


On Thu, 12 Mar 2020 at 16:46, Mike Stein  wrote:

> The original genuine cables *were* (partially) shielded, although probably
> more for RFI prevention than signal integrity:
>
>
> - Original Message -
> *From:* Brian White 
> *To:* m...@bitchin100.com
> *Sent:* Thursday, March 12, 2020 12:01 PM
> *Subject:* Re: [M100] DVI cable length
>
> I saw the post, I just didn't know an answer better than "easy enough to
> just try it" which is not all that helpful, but I guess at least then you
> would have known your post posted.
>
> Although part of the cable has special wiring and connectors, once you
> have a proper cable, it doesn't require anything special to add an
> extension to the DVI end of it.
>
> I'm actually already amazed that a raw system bus going out over an
> unshielded ribbon cable works at all, but I guess the DVI came enough years
> after the Model 1 expansion interface debacle that they learned how to do
> that better. ;)
>
> If you got a new cable from Arcade Shopper I probably built it.
>
> I haven't tried any long runs or done any reliability testing to find the
> longest run that not merely appears to work, but is definitely safe from
> corruption. You don't want data you can't trust, and I don't know, and
> wouldn't want to rely on, how much fancy error detection and correction is
> going on at low levels. Like does every block written or read from the disk
> come along with a checksum? Until I knew that, I would want that bus to be
> as clean as possible.
>
> --
> bkw
>
> On Thu, Mar 12, 2020, 11:04 AM James Zeun  wrote:
>
>>
>> Hey everyone
>>
>> Think I might have messed up messaging the list last night, so I'm
>> sending my post again. My apologies if it did go through.
>>
>> Just a quick question, how long can a DVI link cable be? My new cable
>> arrived today and while it's longer than what I had, I could still do with
>> it being 20-30cm longer. I have the DVI sitting at an angle to the left of
>> me on the desk, with my TV/Monitor flatscreen sitting on top of it. Using
>> the new cable, it seems the intended way to use the DVI is with the M100
>> sat directly in front of it. However that isn't really comfortable nor
>> practical with my setup, neither do I really want the monitor directly
>> facing me. I regularly clear the center of my desk for soldering which is
>> why the monitor sits in the corner out the way.
>>
>> I did get a home made cable with my DVI and while it is rather short
>> (25cm), I'm wondering if I couldn't extending it another 30cm so the M100
>> can sit in front of me and the DVI to the side.
>>
>> As always any and all input is welcome, I'm probably going to give it a
>> shot either way. I just thought I'd see if anyone new if there was a limit
>> before signal loss is to much.
>>
>> Cheers
>> James
>> --
>> My retro tech blog and general ramblings
>> http://bytemyvdu.wordpress.com/
>>
>

-- 
My retro tech blog and general ramblings
http://bytemyvdu.wordpress.com/


Re: [M100] DVI cable length

2020-03-12 Thread Mike Stein
The original genuine cables *were* (partially) shielded, although probably more 
for RFI prevention than signal integrity:


  - Original Message - 
  From: Brian White 
  To: m...@bitchin100.com 
  Sent: Thursday, March 12, 2020 12:01 PM
  Subject: Re: [M100] DVI cable length


  I saw the post, I just didn't know an answer better than "easy enough to just 
try it" which is not all that helpful, but I guess at least then you would have 
known your post posted.


  Although part of the cable has special wiring and connectors, once you have a 
proper cable, it doesn't require anything special to add an extension to the 
DVI end of it.


  I'm actually already amazed that a raw system bus going out over an 
unshielded ribbon cable works at all, but I guess the DVI came enough years 
after the Model 1 expansion interface debacle that they learned how to do that 
better. ;)


  If you got a new cable from Arcade Shopper I probably built it.


  I haven't tried any long runs or done any reliability testing to find the 
longest run that not merely appears to work, but is definitely safe from 
corruption. You don't want data you can't trust, and I don't know, and wouldn't 
want to rely on, how much fancy error detection and correction is going on at 
low levels. Like does every block written or read from the disk come along with 
a checksum? Until I knew that, I would want that bus to be as clean as possible.

  -- 

  bkw


  On Thu, Mar 12, 2020, 11:04 AM James Zeun  wrote:



Hey everyone


Think I might have messed up messaging the list last night, so I'm sending 
my post again. My apologies if it did go through.


Just a quick question, how long can a DVI link cable be? My new cable 
arrived today and while it's longer than what I had, I could still do with it 
being 20-30cm longer. I have the DVI sitting at an angle to the left of me on 
the desk, with my TV/Monitor flatscreen sitting on top of it. Using the new 
cable, it seems the intended way to use the DVI is with the M100 sat directly 
in front of it. However that isn't really comfortable nor practical with my 
setup, neither do I really want the monitor directly facing me. I regularly 
clear the center of my desk for soldering which is why the monitor sits in the 
corner out the way. 


I did get a home made cable with my DVI and while it is rather short 
(25cm), I'm wondering if I couldn't extending it another 30cm so the M100 can 
sit in front of me and the DVI to the side. 
  

As always any and all input is welcome, I'm probably going to give it a 
shot either way. I just thought I'd see if anyone new if there was a limit 
before signal loss is to much.


Cheers
James
-- 

My retro tech blog and general ramblings
http://bytemyvdu.wordpress.com/


Re: [M100] DVI cable length

2020-03-12 Thread MikeS
Mine's 2 feet long, no problems.

You can't see the DVI in this pic but it's off to the left:


  - Original Message - 
  From: James Zeun 
  To: m...@bitchin100.com 
  Sent: Wednesday, March 11, 2020 7:11 PM
  Subject: [M100] DVI cable length


  Hey everyone


  Just a quick question, how long can a DVI link cable be? My new cable arrived 
today and while it's longer than what I had, I could still do with it being 
20-30cm longer.





Re: [M100] DVI cable length

2020-03-12 Thread Brian White
I saw the post, I just didn't know an answer better than "easy enough to
just try it" which is not all that helpful, but I guess at least then you
would have known your post posted.

Although part of the cable has special wiring and connectors, once you have
a proper cable, it doesn't require anything special to add an extension to
the DVI end of it.

I'm actually already amazed that a raw system bus going out over an
unshielded ribbon cable works at all, but I guess the DVI came enough years
after the Model 1 expansion interface debacle that they learned how to do
that better. ;)

If you got a new cable from Arcade Shopper I probably built it.

I haven't tried any long runs or done any reliability testing to find the
longest run that not merely appears to work, but is definitely safe from
corruption. You don't want data you can't trust, and I don't know, and
wouldn't want to rely on, how much fancy error detection and correction is
going on at low levels. Like does every block written or read from the disk
come along with a checksum? Until I knew that, I would want that bus to be
as clean as possible.

-- 
bkw

On Thu, Mar 12, 2020, 11:04 AM James Zeun  wrote:

>
> Hey everyone
>
> Think I might have messed up messaging the list last night, so I'm sending
> my post again. My apologies if it did go through.
>
> Just a quick question, how long can a DVI link cable be? My new cable
> arrived today and while it's longer than what I had, I could still do with
> it being 20-30cm longer. I have the DVI sitting at an angle to the left of
> me on the desk, with my TV/Monitor flatscreen sitting on top of it. Using
> the new cable, it seems the intended way to use the DVI is with the M100
> sat directly in front of it. However that isn't really comfortable nor
> practical with my setup, neither do I really want the monitor directly
> facing me. I regularly clear the center of my desk for soldering which is
> why the monitor sits in the corner out the way.
>
> I did get a home made cable with my DVI and while it is rather short
> (25cm), I'm wondering if I couldn't extending it another 30cm so the M100
> can sit in front of me and the DVI to the side.
>
> As always any and all input is welcome, I'm probably going to give it a
> shot either way. I just thought I'd see if anyone new if there was a limit
> before signal loss is to much.
>
> Cheers
> James
> --
> My retro tech blog and general ramblings
> http://bytemyvdu.wordpress.com/
>


[M100] DVI cable length

2020-03-12 Thread James Zeun
Hey everyone

Think I might have messed up messaging the list last night, so I'm sending
my post again. My apologies if it did go through.

Just a quick question, how long can a DVI link cable be? My new cable
arrived today and while it's longer than what I had, I could still do with
it being 20-30cm longer. I have the DVI sitting at an angle to the left of
me on the desk, with my TV/Monitor flatscreen sitting on top of it. Using
the new cable, it seems the intended way to use the DVI is with the M100
sat directly in front of it. However that isn't really comfortable nor
practical with my setup, neither do I really want the monitor directly
facing me. I regularly clear the center of my desk for soldering which is
why the monitor sits in the corner out the way.

I did get a home made cable with my DVI and while it is rather short
(25cm), I'm wondering if I couldn't extending it another 30cm so the M100
can sit in front of me and the DVI to the side.

As always any and all input is welcome, I'm probably going to give it a
shot either way. I just thought I'd see if anyone new if there was a limit
before signal loss is to much.

Cheers
James
-- 
My retro tech blog and general ramblings
http://bytemyvdu.wordpress.com/


  1   2   3   4   >