Virtual-Mac/DiskImageCreator.vb
Edson Armando 623da0afb0
Updated master files to 0.5.2
Deleted the files which were before in master (Those can be found in the releases > 0.3.0)
Uploaded new files which are of the 0.5.2 version
Now you can open a Basilisk II config file (To add it, open the New Mac Wizard, select "Create from file" and set the emulator to Basilisk II)
and also you can edit and save it (Note that to edit it you must open the section "Edit Config File Manually" and make your changes there)
2018-12-28 10:38:45 -06:00

16 lines
373 B
VB.net

Imports System.IO
Module DiskImageCreator
Public Sub CreateDisk(ByVal Size As Long, ByVal Path As String)
Dim bytes() As Byte
Dim fs As FileStream = File.Create(Path)
Dim x As Integer = 0
fs.Write(bytes, 0, bytes.Length)
fs.Close()
End Sub
Public Function Byter() As Byte
End Function
End Module