Luckilly this is mostly false news, and I guess depends on what dd.exe you have installed!Andrew wrote: Thu Aug 14, 2025 10:40 amThis is works only for Linux.XorA wrote: Thu Aug 14, 2025 10:18 am Just a note for people needing to quickly byteswap disk images
Code: Select all
dd if=input.img of=output.img bs=4k conv=swab
On Windows dd does not do any conversion.
QDOS Classic for Amiga: QDOS Floppy images for UAE?
- XorA
- Site Admin
- Posts: 1722
- Joined: Thu Jun 02, 2011 11:31 am
- Location: Shotts, North Lanarkshire, Scotland, UK
Re: QDOS Classic for Amiga: QDOS Floppy images for UAE?
Re: QDOS Classic for Amiga: QDOS Floppy images for UAE?
I downloaded all dd windows-versions I could find, and none accepted the =swab parameter. If you have a link to a windows version that can perform the conversion, please post it here.XorA wrote: Thu Aug 14, 2025 2:26 pmLuckilly this is mostly false news, and I guess depends on what dd.exe you have installed!Andrew wrote: Thu Aug 14, 2025 10:40 amThis is works only for Linux.XorA wrote: Thu Aug 14, 2025 10:18 am Just a note for people needing to quickly byteswap disk images
Code: Select all
dd if=input.img of=output.img bs=4k conv=swab
On Windows dd does not do any conversion.
After I got sick of searching and testing dd versions I just bought and registered Hex Editor Neo .
-
- Font of All Knowledge
- Posts: 4830
- Joined: Mon Dec 20, 2010 11:40 am
- Location: Sunny Runcorn, Cheshire, UK
Re: QDOS Classic for Amiga: QDOS Floppy images for UAE?
Hi,
I used FS-UAE on Linux or WIN-UAE on Windows, with the QDOS boot rom cifugured as the Kickstart rom and a QD.OS FLP Image in DF0
All worked without swapping bytes.
I used FS-UAE on Linux or WIN-UAE on Windows, with the QDOS boot rom cifugured as the Kickstart rom and a QD.OS FLP Image in DF0
All worked without swapping bytes.
Regards, Derek
- Mark Swift
- Brittle Membrane
- Posts: 100
- Joined: Fri Jul 18, 2014 9:13 am
- Location: Blackpool, Lancs, UK
- Contact:
Re: QDOS Classic for Amiga: QDOS Floppy images for UAE?
Hi
Its a useful command. I use it in bash scripts on my Mac to PEEK and POKE into files...
I have some screen snapshots below of a working UAE configuration...
1. In the Quickstart section, choose "A4000" as the Model 2. In the ROM section, choose the QC3955UAE4_ROM 3. In the CD and Hard drives section, select "Add Hardfile" 4. In the pop-up...
Select the "QUBRDF.hdf" QubIDE image.
Select "Full drive/RDB mode"
Select "HD Controller:Commodore A600/A1200/A4000 IDE" 5. Click OK and save the config
...Hope it's of use
I didn't realise there was a Windows version; good to know.
Its a useful command. I use it in bash scripts on my Mac to PEEK and POKE into files...
Code: Select all
#PEEKL
filename="JS_ROM";fileoffset=49142;echo $((16#$(dd if="${filename}" ibs=1 skip=${fileoffset} count=4 status=none | xxd -p)))
#POKEL
filename="JS_ROM";fileoffset=49142;value=825110833;printf "%08x\n" ${value} | xxd -r -p | dd of="${filename}" bs=1 seek=${fileoffset} conv=notrunc status=none
Agreed, no need to swap bytes. The QubIDE image should work as is.Derek_Stewart wrote: Thu Aug 14, 2025 7:00 pm I used FS-UAE on Linux or WIN-UAE on Windows...
All worked without swapping bytes.
I have some screen snapshots below of a working UAE configuration...
1. In the Quickstart section, choose "A4000" as the Model 2. In the ROM section, choose the QC3955UAE4_ROM 3. In the CD and Hard drives section, select "Add Hardfile" 4. In the pop-up...
Select the "QUBRDF.hdf" QubIDE image.
Select "Full drive/RDB mode"
Select "HD Controller:Commodore A600/A1200/A4000 IDE" 5. Click OK and save the config
...Hope it's of use
Re: QDOS Classic for Amiga: QDOS Floppy images for UAE?
Hi Mark,
By chance I already had QC3955UAE4.ROM correctly.
If the images were not byteswapped, file exchange would be easy. E.g. Q68, QIMSI and Wolfgang's QxlWinReader for JAVA support QubIDE images.
Thanks, Peter
Ah, I was already wondering. To have this info in the accompanying textfile would be good.Mark Swift wrote: Thu Aug 14, 2025 7:47 am There are 3 versions of the ROM in the zip file.
QC3955UAE.ROM - no qubide
QC3955UAE1.ROM - with qubide for A1200
QC3955UAE4.ROM - with qubide for A4000
By chance I already had QC3955UAE4.ROM correctly.
This was not checked and caused the problem!
If the images were not byteswapped, file exchange would be easy. E.g. Q68, QIMSI and Wolfgang's QxlWinReader for JAVA support QubIDE images.
Thanks, Peter