DSK2ROM 0.80

by Vincent van Dam on 18-06-2007, 23:52
Topic: Software
Tags: Utilities
Languages:

Vincent van Dam has just released a new version of his DSK2ROM tool. DSK2ROM is a tool to convert disk images to ROM images. This version includes a 'safe-mode' which improves the number of disk images to be supported on a SCC-type flash cartridge a lot.

The complete list of changes:

  • safe mode to support disk images with aggressive memory searching
  • added setting 50/60Hz during boot
  • added setting MSX1 palette during boot
  • added non-exclusive boot mode

Relevant link: DSK2ROM 0.80

Comments (8)

By dvik

Prophet (2173)

dvik's picture

19-06-2007, 00:59

Nice features. Another great update LOL!

By Google

By Ramones

Master (137)

Ramones's picture

20-06-2007, 14:41

Yeah! Great! Wink

By Imanok

Paladin (718)

Imanok's picture

21-06-2007, 08:42

Good job man! Big smile

BTW, a list of 'conflictive games' wouldn't be bad at all Wink

By Vincent van Dam

Champion (512)

Vincent van Dam's picture

21-06-2007, 23:25

Didn't test all images ofcourse, I would love to have reports about failing images! Cool

The images I had problems with (before adding safe mode) were the bit2 games (nyancle, famicle parodic 2, quinpl), and some others like "feedback" and the radarsofts' "breaker". The problem is a common pattern, if a game fails, try it with safe mode enabled, and chances are that it will work Smile

By Imanok

Paladin (718)

Imanok's picture

22-06-2007, 16:30

The classical test&error procedure! Tongue

Indeed there are not too much games released originally in one single disk... most of them have two or more disks.

By Raster

Rookie (25)

Raster's picture

24-06-2007, 09:43

Is an opposite tool, which will transfer and load a rom from a disk?

By djh1697

Paladin (842)

djh1697's picture

28-07-2007, 17:38

Is there a way to convert a whole directory of DSK images to ROMdsk images? They are stored on my PC, a handy batch conversion would be useful either on the PC or MSX.

I was thinking about converting the MSXmania collection to ROM. Any suggestions?

By Vincent van Dam

Champion (512)

Vincent van Dam's picture

28-07-2007, 20:50

Assuming you don't use some unix shell; maybe doing "dir mania*.dsk > allmanias.txt" gives you the flexibility to create all the command lines with eg. excell or some advanced text editor?

In unix (bash) you could do:
for i in mania*dsk ; do j=`echo $i|sed s/dsk/rom/`; dsk2rom $i $j; done

My MSX profile