| |
xIII
Registered: Nov 2008 Posts: 210 |
.nib files
How can I open these files ? |
|
| |
Shine
Registered: Jul 2012 Posts: 346 |
I mean you can convert NIB files to G64 or D64.
http://c64preservation.com/files/nibtools/
I guess you have to use "nibconv.exe" to do that. |
| |
hedning
Registered: Mar 2009 Posts: 4720 |
Easiest way is to use micro64disktool and make .g64:s out of them. Then run in Vice. |
| |
ΛΛdZ
Registered: Jul 2005 Posts: 153 |
I use nibconv.exe to convert nib->g64, nib->d64, g64->d64
|
| |
xIII
Registered: Nov 2008 Posts: 210 |
Can this be done in batch ? |
| |
ΛΛdZ
Registered: Jul 2005 Posts: 153 |
Sure:
for %%i in (*.nib) do nibconv.exe %%i %%i.g64 |
| |
iAN CooG
Registered: May 2002 Posts: 3186 |
if you want to have single extension I suggest to use CMD syntax
for %%i in (*.nib) do nibconv.exe %%i %%~ni.g64
|
| |
xIII
Registered: Nov 2008 Posts: 210 |
I opened a dos box and tried this but got an error : %%i not expected at this moment ????? |
| |
ΛΛdZ
Registered: Jul 2005 Posts: 153 |
add it to a convert.bat file - thats how it works for me. |
| |
xIII
Registered: Nov 2008 Posts: 210 |
ok, it worked :) thx
Now I have a bunch of G64 files to convert to .D64 :p |
| |
chatGPZ
Registered: Dec 2001 Posts: 11352 |
there is probably a reason for them being .nibs ... |
| |
ΛΛdZ
Registered: Jul 2005 Posts: 153 |
nib to g64:
for %%i in (*.nib) do nibconv.exe %%i %%i.g64
nib to d64:
for %%i in (*.nib) do nibconv.exe %%i %%i.d64
g64 to d64:
for %%i in (*.g64) do nibconv.exe %%i %%i.d64 |
| |
xIII
Registered: Nov 2008 Posts: 210 |
thx for the help
|