Home » RBC Forums » General Discussion » CB030, A 68030 SBC for hobbyists
Re: CB030, A 68030 SBC for hobbyists [message #10096 is a reply to message #10095] |
Mon, 15 August 2022 21:01   |
mikesmith
Messages: 80 Registered: March 2018
|
Member |
|
|
Which utilities did you try? OS-9 disk stuff is a bit... interesting. More reading may make things clearer, but basically for the CF disk there are two parts; the driver module (cfide) and the descriptor modules (c0, c0_fmt and dd) that configure it.
For a simple test, insert a CF card and type 'dump /c0@'. That should give you a raw hexdump of the contents of the card, starting at block 0. 'c0' is the descriptor name, '/' means to look for a device rather than a file, and '@' means to open it raw rather than to try to mount the filesystem. You can think of '/c0' as a drive specifier like 'A:'.
'dd' is just 'c0' but with the "default" disk name (dd = default disk). c0_fmt is c0 but it allows writing to LBA0, which is required to format the disk or install a bootfile.
Here's a transcript of me formatting a CF card and installing a bootfile on it, with contents from the ROM bootfile. This depends on the 'save' and 'build' commands being in the ROM bootfile that you start with - you can add these by editing ports/CB030/BOOTFILE/dev.bl. I'll add them to the github repo shortly and add a version of this to the README.
$ format c0_fmt
... blah blah ...
Formatting device: c0_fmt
proceed? y
this is a HARD disk - are you sure? y
physical format desired? n
physical verify desired? n
volume name: boot
building media bitmap...
... blah blah ...
writing root directory structure
$ chd /c0_fmt
CompactFlash driver build 39
$ save -f=OS9Boot kernel ioman init syscache ssm fpu tkcb030 rtclock scf null nil pipeman pipe sc68681 term t1 rbf cfide dd sysgo mshell csl pd
$ os9gen -e /c0_fmt -q=OS9Boot
$ makdir SYS
$ chd SYS
$ build startup
? chd /dd
? chx /dd/CMDS
?
$
<<< board reset >>>
OS-9/68K System Bootstrap
Now trying to boot from CompactFlash.
A valid OS-9 bootfile was found.
pd: can't open current directory. $ mdir -e
Addr Size Owner Perm Type Revs Ed # Lnk Module name
-------- -------- ----------- ---- ---- ---- ----- ----- --------------
00007100 28476 0.0 0555 Sys a000 375 2 kernel
0000e03c 5660 0.0 0555 Sys a000 37 1 ioman
0000f658 330 0.0 0555 Sys 8000 51 1 init
0000f7a2 406 0.0 0555 Sys a000 25 1 syscache
0000f938 1908 0.0 0555 Sys a000 41 1 ssm
000100ac 12848 0.0 0555 Sys a000 18 1 fpu
000132dc 276 0.0 0555 Sys a000 11 1 tkcb030
... etc. but see these low addresses - these modules are in RAM where the bootfile was loaded from CF
00038920 4312 1.0 0555 Prog c001 30 0 pd
fe026986 148 0.0 0555 Desc 8000 26 1 c0
fe026a1a 152 0.0 0555 Desc 8000 26 0 c0_fmt
fe0471dc 4838 1.0 0555 Prog c001 39 0 attr
fe0484c2 2756 0.0 0555 Prog c001 10 0 break
fe048f86 2670 1.0 0555 Prog c001 24 0 build
... see how these have been discovered from the bootfile that's in ROM, because the bootloader told the kernel to look there as well. They will run just fine out of the ROM (slowly, of course).
fe0721e6 13838 1.0 0555 Data 8001 1 0 basic68k.stb
... still debugging this one
You can use 'save' to copy program modules from the ROM into /dd/CMDS and then flash NOBUG/romimage.diskboot. When you boot, it will run /SYS/startup which in the example above will change your data directory (chd) to /dd and your execution directory (chx) to /dd/CMDS. At that point, any commands you type will run off the CF rather than from the in-memory sticky copies (the diskboot ROM does have a few emergency commands in it).
[Updated on: Mon, 15 August 2022 21:08] Report message to a moderator
|
|
|
 |
|
CB030, A 68030 SBC for hobbyists
By: plasmo on Sat, 18 January 2020 09:44
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: rwiker on Sun, 19 January 2020 00:27
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sun, 19 January 2020 04:35
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sun, 19 January 2020 06:05
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: jcoffman on Mon, 20 January 2020 10:24
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Mon, 20 January 2020 20:39
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: jcoffman on Tue, 21 January 2020 12:47
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 23 January 2020 20:17
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: rwiker on Fri, 24 January 2020 00:23
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: tobster on Fri, 24 January 2020 00:25
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Fri, 24 January 2020 07:05
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: lowen on Fri, 24 January 2020 19:21
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Fri, 24 January 2020 21:15
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: rwiker on Sat, 25 January 2020 01:07
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: UhClem on Fri, 07 February 2020 17:19
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 06 February 2020 19:14
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Fri, 07 February 2020 10:22
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sat, 08 February 2020 06:36
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 27 February 2020 20:29
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: rwiker on Sat, 29 February 2020 08:31
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sat, 29 February 2020 19:02
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Mon, 02 March 2020 16:57
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Mon, 02 March 2020 17:51
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Mon, 02 March 2020 19:24
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Mon, 02 March 2020 20:33
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Mon, 02 March 2020 21:44
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Mon, 02 March 2020 20:58
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Mon, 02 March 2020 21:53
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Tue, 03 March 2020 07:17
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Tue, 03 March 2020 07:28
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Tue, 03 March 2020 07:52
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Tue, 03 March 2020 08:56
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Wed, 04 March 2020 19:05
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Wed, 04 March 2020 19:30
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Thu, 05 March 2020 08:39
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Thu, 05 March 2020 13:57
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 05 March 2020 20:20
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Thu, 05 March 2020 17:59
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 05 March 2020 20:35
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 05 March 2020 21:19
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Thu, 05 March 2020 23:07
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Fri, 06 March 2020 15:34
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Fri, 06 March 2020 15:49
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Fri, 06 March 2020 15:56
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Fri, 06 March 2020 16:02
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Fri, 06 March 2020 16:31
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Fri, 06 March 2020 16:34
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Fri, 06 March 2020 17:09
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Fri, 06 March 2020 19:18
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Fri, 06 March 2020 20:06
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Fri, 13 March 2020 14:43
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Fri, 13 March 2020 18:05
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Sat, 14 March 2020 15:39
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sun, 15 March 2020 07:39
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Sun, 15 March 2020 10:07
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Thu, 05 March 2020 08:44
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Sun, 15 March 2020 10:12
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sun, 15 March 2020 11:37
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Sun, 15 March 2020 16:13
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sun, 15 March 2020 19:35
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Sun, 15 March 2020 21:31
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Mon, 16 March 2020 06:59
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Mon, 16 March 2020 08:57
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Mon, 16 March 2020 21:29
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Tue, 17 March 2020 06:29
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Tue, 17 March 2020 07:51
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Tue, 17 March 2020 08:28
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Tue, 17 March 2020 09:18
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Tue, 17 March 2020 09:55
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Tue, 17 March 2020 10:44
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Tue, 17 March 2020 15:13
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Tue, 17 March 2020 15:53
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Tue, 17 March 2020 18:28
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Fri, 27 March 2020 11:57
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: tingo on Fri, 27 March 2020 15:45
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Sat, 28 March 2020 09:35
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Sat, 28 March 2020 17:16
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Sat, 28 March 2020 18:32
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sat, 28 March 2020 18:35
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Sat, 28 March 2020 19:15
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sat, 28 March 2020 19:26
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Sat, 28 March 2020 20:29
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sat, 28 March 2020 20:47
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Sat, 28 March 2020 21:43
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Thu, 02 April 2020 09:00
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 02 April 2020 19:21
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 02 April 2020 19:35
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 02 April 2020 19:40
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Thu, 02 April 2020 19:41
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 02 April 2020 20:13
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Wed, 08 April 2020 11:34
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Wed, 08 April 2020 12:02
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Wed, 08 April 2020 16:31
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Wed, 08 April 2020 16:47
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Wed, 08 April 2020 16:22
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 09 April 2020 20:08
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Thu, 09 April 2020 20:58
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Thu, 09 April 2020 21:06
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Fri, 10 April 2020 06:51
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Fri, 10 April 2020 07:54
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sat, 11 April 2020 06:55
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sun, 12 April 2020 04:28
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Fri, 17 April 2020 21:47
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Tue, 16 June 2020 20:08
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Wed, 17 June 2020 17:47
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 18 June 2020 17:35
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sun, 21 June 2020 19:47
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Wed, 24 June 2020 17:31
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Wed, 24 June 2020 22:37
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Wed, 01 July 2020 08:27
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 09 April 2020 20:17
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 02 July 2020 04:26
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sun, 05 July 2020 04:20
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sun, 12 July 2020 13:17
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Tue, 14 July 2020 18:07
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Wed, 15 July 2020 14:51
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Thu, 16 July 2020 18:03
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: Yves-D. on Wed, 08 July 2020 11:52
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: Yves-D. on Wed, 08 July 2020 11:58
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 09 July 2020 05:07
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: Yves-D. on Mon, 10 August 2020 04:29
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikemac on Mon, 10 August 2020 12:29
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Wed, 12 January 2022 21:12
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Fri, 28 January 2022 07:40
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Mon, 01 August 2022 03:14
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: e2k on Mon, 01 August 2022 10:58
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sat, 27 August 2022 18:47
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Mon, 29 August 2022 19:19
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Mon, 12 September 2022 13:59
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikesmith on Tue, 13 September 2022 11:31
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: mikesmith on Tue, 13 September 2022 16:54
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Tue, 14 March 2023 13:30
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Wed, 15 March 2023 06:45
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Wed, 15 March 2023 17:23
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
 |
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 30 March 2023 17:58
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Fri, 12 August 2022 09:33
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sun, 14 August 2022 19:11
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Mon, 15 August 2022 19:29
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Tue, 16 August 2022 13:18
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: Yves-D. on Thu, 18 August 2022 23:26
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sun, 21 August 2022 05:37
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Mon, 22 August 2022 16:24
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: e2k on Mon, 22 August 2022 23:33
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: e2k on Wed, 24 August 2022 22:53
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Tue, 02 August 2022 04:21
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Tue, 02 August 2022 14:51
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Wed, 03 August 2022 11:59
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Thu, 04 August 2022 18:37
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Fri, 05 August 2022 16:47
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Sat, 06 August 2022 17:16
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Mon, 08 August 2022 18:18
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: simonj5 on Wed, 10 August 2022 01:38
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Wed, 10 August 2022 15:20
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Fri, 12 August 2022 09:39
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
By: plasmo on Tue, 20 June 2023 11:42
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
 |
|
Re: CB030, A 68030 SBC for hobbyists
|
Current Time: Sat Sep 27 07:45:41 PDT 2025
Total time taken to generate the page: 0.39855 seconds
|