forked from jfdelnero/HxCFloppyEmulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hxcfloppyemulator_soft_release_notes.txt
1516 lines (1029 loc) · 61.4 KB
/
hxcfloppyemulator_soft_release_notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-------------------------------------------------------------------------------
-----------H----H--X----X-----CCCCC-----22222----0000-----0000-----11----------
----------H----H----X-X-----C--------------2---0----0---0----0---1-1-----------
---------HHHHHH-----X------C----------22222---0----0---0----0-----1------------
--------H----H----X--X----C----------2-------0----0---0----0-----1-------------
-------H----H---X-----X---CCCCC-----22222----0000-----0000----11111------------
-------------------------------------------------------------------------------
-- Contact: hxc2001<at>hxc2001.com --------------------- https://hxc2001.com --
-------------------------------------------------------------------------------
HxC Floppy Emulator project
(c) 2006-2023 Jean-François DEL NERO / (c) HxC2001
Website : https://hxc2001.com
Forum : https://torlus.com/floppy/forum
Facebook : https://www.facebook.com/groups/hxc2001
Twitter : https://twitter.com/jfdelnero (or hashtag #hxc2001)
Sources : https://github.com/jfdelnero/HxCFloppyEmulator
-------------------------------------------------------------------------------
/*********************************************************
** **** 2023 : HxCFloppyEmulator *.*.*.* - (Work in progress/beta version)
*** Latest beta version : https://hxc2001.com/download/floppy_drive_emulator/HxCFloppyEmulator_soft_beta.zip ***
*** Last update : v2.14.12.1, 20 August 2023 ***
-> Many fixes and improvements into the flux stream management :
- One revolution only / 2 indexes support fixed.
- Fix stream files formats export : No more glitch after the first revolution index. (fix SCP and KF export).
-> Kryoflux writer : stream to stream conversion : Don't align output stream to the next index.
-> SCP writer : stream to stream conversion : Don't align output stream to the next index.
-> SCP loader : Fix singled-sided images support (fix the number of tracks/cylinder).
-> SCP loader : Fix broken support of SCP images with more than 5 revolutions.
-> SCP loader : Fix odd number of tracks + double step mode issue (last track missing).
-> Logic analyzer capture loader : nameTT.S.logicbin8bits file name convention support. (TT=track S=side)
-> New XML format : MC50/MC300/MC500 formats and empty data disk.
-> Track display : fix possible infinite loop : check the bitrate value and stop + report if needed.
-> HFEv3 loader : Support RAND_OPCODE right after SKIPBITS_OPCODE.
-> New X68000 DIM file image loader.
-> New Apple II 2MG file image loader. (WIP - To be completed)
-> XML raw loader : Fix images last sector loading.
-> Many internal code improvements and fixes.
-> Track editor : New "insert" and "remove" track operations.
-> HFE writers : New "HFE_WRITER_WRITENOTALLOWED" parameter : Set it to 1 to write protect the exported hfe files.
-> HxC stream (Pauline) : Auto detect and load properly hard-sectored dumps.
-> D88 loader : Fix possible infinite loop with corrupted image.
-> Batch converter : New BATCHCONVERT_KEEP_SOURCE_FILE_NAME_EXTENSION setting to enable/disable the source file extension to the output file name.
-> BMP export : New Stream tracks mode export.
-> User interface : Save and restore previous state (WIP, Done : batch converter window)
-> NSI Northstar : Some index timings and formats fixes.
-> macOS : Better CAPSlib/ipf lib support. (Renaud Guérin)
*********************************************************/
/*********************************************************
6 February 2023 : HxCFloppyEmulator 2.14.4.1
-> Windows : Turn the process in high priority when the USB HxC Floppy Emulator is detected.
Fix most of the Sync lost events.
-> XML generated disks : Clear the internal tracks status -> fix the command line tool.
-> Hard-sectored H8D Heathkit images: Fix odd tracks main index skew.
-> QuickDisk files loader : Support "HxC-like-but-not-exactly-hxc" QD images files.
-> DiscFerret DFI Loader : New DFILOADER_SAMPLE_FREQUENCY_MHZ parameter to change
the default sample frequency.
-> HxC stream (Pauline) : Support CLV convertion parameters :
- FLUXSTREAM_IMPORT_PCCAV_TO_MACCLV (Dump drive's CAV RPM)
- FLUXSTREAM_IMPORT_PCCAV_TO_C64CLV (Dump drive's CAV RPM)
- FLUXSTREAM_IMPORT_PCCAV_TO_VICTOR9KCLV (Dump drive's CAV RPM)
-> SD HxC Interface modes settings : Add PC/S950 auto density configurations.
-> Apple II *.do/*.dsk/*.po file writer.
-> SCP writer : The "Disk Type" field can be forced in the configuration file
and the "SCPEXPORT_DISK_TYPE" variable.
-> Stream files writers (SCP/KF Raw/...) : Direct stream to stream support
If the current loaded tracks have a stream dump in memory then
these streams are now just resampled and then exported to the stream file.
If you want to use the old behavior and export the analyzed tracks instead then
set the "FLUXSTREAM_STREAM_TO_STREAM_CONVERT" variable to 0.
-> Stream analyzer : Bands mode "PLL" -> better Victor 9000 disks support (Work-in-progress)
-> Stream analyzer : Better Apple II and Macintosh support.
-> Stream and track viewer : Print sectors content on the track view.
(ISO/IBM SD/DD and Micral N track formats)
-> Some memory related bug fixed.
-> Possible crashes related to the track / disk view window fixed.
-> IMD File Writer : Fix track type when no supported sector are present on the track.
-> MSA File Writer : Don't write the last unformatted tracks.
-> Kryoflux Import : (WIP) Possible missing last index workaround.
-> Kryoflux writer : Possible dead lock fixed.
-> FDX support added : Revision 3 file format (standard and Raw/stream variants supported)
-> Raw FDX writer support added.
-> 86Box 86F support added : (WIP)
-> FD loader : Fix sectors side ID : All of them should use the ID 0.
-> Logic analyzer capture loader :
Can now load tracks captured with a simple logic analyzer. (Saleae logic analyzer or similar).
The current state/limitations are :
Need only 2 jumper wires : data (floppy pin 30) & index (floppy pin 8).
Load only a track at a time.
The sample rate is set by default at 16MHz. This can be changed through the "LOGICANALYZER_SAMPLERATE" variable.
The floppy data signal is mapped by default to the bit 0. This can be changed through the "LOGICANALYZER_DATA_BIT" variable.
The floppy index signal is mapped by default to the bit 3. This can be changed through the "LOGICANALYZER_INDEX_BIT" variable.
The supported input file format is a raw 8bits binary format (change the file extension to ".logicbin8bits").
Each byte in the file is a sample.
How to use it ? :
Connect the ground, data and index wires : machine ground to vss/gnd wire, floppy pin 30 to wire 0, floppy pin 8 to wire 3.
Start the machine, start the logic analyzer software. Start the capture and on the machine use any software/way to read a particular track.
The track should be read during at least to 2 revolutions ( 3 index pulses ). Save the dump in raw binary mode.
Change the binary dump file extension to ".logicbin8bits".
Before loading the file into the hxc software you may need to set the LOGICANALYZER_IMPORT_START_OFFSET and LOGICANALYZER_IMPORT_END_OFFSET
variables to define the region of interest in the file. You can use PulseView or similar software to roughly get the values to use.
TODO / Work in progress :
- Add the xx.y file naming convention to load multiple track files (xx=track number, y=side number)
- Add the dir,step,side, track 0 signals support to load a whole disk from one single file.
-> zlib updated to the version v1.2.13 : Security and bugs fixes.
-> expat lib updated to the version v2.5.0 : Security and bugs fixes.
-> lz4 lib updated to the version v1.9.4 : Bugs fixes.
-> Development / build process:
- GCC 9 / 11 : Fix warning messages during the compilation.
- Clang / macOS : Fix warning messages during the compilation.
- Repository changed to Git and moved to Github : https://github.com/jfdelnero/HxCFloppyEmulator
- Continuous integration build enabled: Linux, Windows x86 + x64, macOS arm + x64 CI build.
- Auto-tests scripts added. (Linux)
*********************************************************/
/*********************************************************
18 January 2021 : HxCFloppyEmulator 2.5.6.6
-> C64 sector format support added.
-> Victor 9000 sector format support added.
-> Disk viewer : 48 TPI disks -> Max tracks increased to 43 tracks.
-> Tracks/Disk viewer : Some minor graphical changes.
-> Stream analyzer : All internals PLL parameters can be set/changed in
the configuration file (see init.script for more details).
-> AppleSauce *.A2R : 3"1/2 disks dump support.
-> Hard-sectored support fixed.
-> Apple Macintosh CLV support fixed/improved.
-> Stream analyzer : Some fixes and improvements.
-> Sectors decoders : Some fixes and improvements.
*********************************************************/
/*********************************************************
31 December 2020 : HxCFloppyEmulator 2.5.5.1
-> New hardware support introduced : Pauline ! The ultimate stream based floppy drive simulator / floppy dumper :)
Pauline control and real time stream viewer window added. ( https://www.youtube.com/watch?v=PZiyms6lo4U )
-> macOS : CAPSlib loader added (IPF, CTRAW...). (Windows/Linux/macOS CAPSlib loaders code merged)
-> macOS : macOS Big Sur support fixed.
-> New Loader/Writer : HxC Quickdisk images.
-> New Writer : Oric DSK images ("MFM_DISK" format).
-> New Loader : DiscFerret *.DFI stream files. (WIP!)
-> New Loader : AppleSauce *.A2R stream files. (WIP!)
-> XML loader : Add new properties and fix long track to support Quickdisk and Hardsectored disks.
New proprerties (micro-seconds time length/position parameters) :
index_len_us , add_index_us, track_len_us, pregap_us.
-> New XML format : Olivetti TOP 100 / Triumph-Adler Gabriele PFS typewriter Quickdisk format.
-> New XML format : FLEX disk formats.
-> New XML format : SORD M68 HD disk.
-> New XML format : Bung MGD2 disk.
-> Windows "Save as" file selector : Fix the overwrite prompt regression.
-> Kryoflux stream loader : Code re-factored and fixed.
-> IPF Loader : The CAPS library DI_LOCK_INDEX flag turned off by default (fake index track buffer realignment).
Can be enabled with the LOADER_IPF_CAPS_DI_LOCK_INDEX parameter.
"Weak bits" support fixed.
-> CPC EDSK writer : Fix EDSK export with unformatted track(s).
Fix export with unaligned track size.
Keep the last unformatted tracks.
Discard the second side if unformatted. (parameter CPCDSK_WRITER_DISCARD_UNFORMATTED_SIDE)
Limit the sector data size to 6144 bytes. (parameter CPCDSK_WRITER_LIMIT_SECTOR_SIZE)
-> Atari ATR Loader : Loader fixed.
-> SCP Loader : Input file sanity checks added.
-> SCP Writer : Randomize stream on weak-bits.
-> SCP Writer : Fix single sided disks export.
-> STX Writer : Support sectors headers without data part.
-> TD0 Loader : More robust with corrupted images.
-> TRS80 DMK Loader : Fix FM / SD track ID / Data mark clock patching.
-> TRS80 DMK Writer : Byte align tracks (WIP!).
-> Macintosh disk support : Macintosh GCR decoding, CLV disks stream import (WIP!).
-> Disk viewer : Resizeable window.
-> Disk viewer : Realistic physical floppy disk state representation (3"1/2 135TPI, 5"1/4 96TPI, 5"1/4 48TPI, 8" 48TPI).
-> Disk viewer : Track markers support.
-> Disk viewer : New stream viewer modes !
You can see the stream files at the signal level ! :
SuperCard Pro *.SCP, Kryoflux *.raw, Pauline Stream HFE, DiscFerret *.DFI, AppleSauce *.A2R...
-> QuickDisk Thomson MO5 Sector/track support added (Set "BMPEXPORT_ENABLE_QD_MO5_ENCODING" to 1 to enable it).
-> Apple II : Track generator fixed : GCR 6&2 Sync bits and sector GAP fixed.
-> Apple II : Various fixes in the track analyzer.
-> QM loader : Regression fixed.
-> S900 raw files support : Low level/track format now match with the real S900 to fix the compatibility
with the Oberheim DPX-1.
-> Windows target : Now use MinGW32 / MinGW64 instead of VC 6.0 to build the software.
32 bits and 64 bits targets supported.
Speed performances significantly increased.
-> Flux Stream Analyzer : Perfectly aligned revolutions (index+stream) issue fixed.
(Some good tracks was marked as weak/bad).
-> Flux Stream Analyzer : Revolution overlap search depth reduced to 1.5% (+/- 3ms) -> Faster execution.
-> Floppy disk dump window redesigned. More options added.
-> USB HxC Floppy Emulator : Packet size can be set with the USB_HXCFLOPPYEMULATOR_DEFAULT_PACKET_SIZE variable.
-> And a plethora of others improvements and fixes !
*********************************************************/
/*********************************************************
8 December 2019 : HxCFloppyEmulator 2.2.2.1
-> macOS Catalina support : Switch to 64bits build + minimum OS version needed changed to 10.9 (Mavericks)
-> Internal environment variables support to tweak/change the default internal library settings/behavior.
-> Script support introduced.
-> GUI : New advanced parameters window added.
-> GUI : Script execution menu entry added.
-> Command line tool : Script execution option added.
-> Floppy Stream dump analysis bitmap export support. (Stream HFE, SCP, KryoFlux Raw)
-> SPS CAPS library loader support added for Linux.
-> SCP loader : Fix/set the number of heads to 2 when the number of head(s) field is set to 0.
-> New files Support : Kurzweil K25 (K2500) and K26 (K2600) file support.
-> Game Doctor SF3 / SF7 file support added.
-> zlib updated to v1.2.11
-> FLTK updated to v1.3.5 for all platforms.
-> Linux build : Automatic FLTK package download and preparation.
FLTK build : Use the fltk automatic flags to match with your graphic stack.
-> General : Lots of code fixes and improvements !
*********************************************************/
/*********************************************************
22 May 2019 : HxCFloppyEmulator 2.1.24.1
DEC RX02 M2FM encoding/decoding support added.
HFEv3 : weakbits support added.
Acorn ADF support : regression fixed.
*********************************************************/
/*********************************************************
29 March 2019 : HxCFloppyEmulator 2.1.23.1
New XML format : Coat-A-Matic 9400 / Robox RC9400 format.
Amiga Image loader (ADF, DMS,...) : Fix the v2.1.20.1 left sector(s) field regression !
Update recommended for Amiga users !
*********************************************************/
/*********************************************************
28 January 2019 : HxCFloppyEmulator 2.1.22.3
Raw loader: Fix global disk bitrate value. (HD disks bitrate issue)
*********************************************************/
/*********************************************************
17 January 2019 : HxCFloppyEmulator 2.1.22.2
CPCDSK loader: v2.1.20.1 Regression fixed. (null sector data length field support).
*********************************************************/
/*********************************************************
15 January 2019 : HxCFloppyEmulator 2.1.22.1
Track editor : New Side1 add/delete button.
HFE v3 loader: Regression fixed.
*********************************************************/
/*********************************************************
01 January 2019 : HxCFloppyEmulator 2.1.21.1
Dos disk browser : Amiga HD (1760KB) disk creation support.
Dos disk browser : Amiga HD (1760KB) disk support fixed.
TeleDisk loader fixed : Bad CRC checking fixed.
*********************************************************/
/*********************************************************
22 December 2018 : HxCFloppyEmulator 2.1.20.1
General : Faster/better file images identification and loader.
General : Many loaders now use the new generic raw file loader.
General : Lots of code improvements.
Internal tracks generator : Now support "weak" sectors.
HFEv3 writer : Remove any possible parasitic opcodes coming from the stream.
New Loader : NEC PC98/PC88 FDI.
CPCDSK loader/writer : Now support the SAMDisk method for DSK with weak bits.
Roland DD XML : Fix tracks skew.
New XML format : ABB disks formats.
New XML format : Automatix RAIL DD disk format.
New XML format : COMX disks formats.
New XML format : DEC RX55 format.
New XML format : Didaktik Spectrum disk format.
New XML format : Dynacord HD disks formats.
New XML format : Gravograph ISIS 640KB disk format.
New XML format : Memotech disks formats.
New XML format : Oerlikon Balzers disks formats.
New XML format : OpusDiscovery disk format.
New XML format : Oric Jasmin disk format.
New XML format : OS9 DD disks formats.
New XML format : PUMA arm robot disks formats.
New XML format : Tatung Einstein disks formats.
New XML format : Timex FDD3000 formats.
New XML format : TRS80 disk format.
New XML format : Unitel Videotex format.
New file image support : SAB Diskette Utility / *.SDU floppy image.
SCP Loader/Writer : Fix single sided SCP file export.
New writer : Dragon VDK format.
Change urls to point to the main hxc2001 domain + switch to https.
*********************************************************/
/*********************************************************
27 May 2018: HxCFloppyEmulator 2.1.11.1
Hard-sectored H8D Heathkit raw file Loader & Writer added !
*********************************************************/
/*********************************************************
24 May 2018: HxCFloppyEmulator 2.1.10.1
Kryoflux Stream Loader (*XX.X.raw) & Stream analyzer : Hard-sectored images support and various fixes !
Kryoflux Stream Loader (*XX.X.raw) : bmpexport.txt config file to generate the full stream track graph.
NSI Northstar raw file Loader & Writer added !
*********************************************************/
/*********************************************************
12 May 2018: HxCFloppyEmulator 2.1.9.3
Kryoflux Stream Loader (*XX.X.raw) : Another fix for the index position !
Kryoflux Stream Loader (*XX.X.raw) : filter.txt config file to adjust the internal bitrate filter.
Flux Stream Analyzer : Internal filter can now be set.
ADF Writer : Amiga ADF HD file (22 Sectors/track) support added.
*********************************************************/
/*********************************************************
11 April 2018: HxCFloppyEmulator 2.1.9.2
Kryoflux Stream Loader (*XX.X.raw) : Loader & writer index position fixed.
*********************************************************/
/*********************************************************
18 March 2018: HxCFloppyEmulator 2.1.9.1
-> Acorn BBC file format loader (*.ADL/ADM/ADF) fixed.
*********************************************************/
/*********************************************************
18 March 2018: HxCFloppyEmulator 2.1.9.0
New XML format definitions :
- Acorn ADFS (160K).
- Acorn ADFM (320K).
- Acorn ADFL (640K).
- Dynacord Add-one.
Stream importer :
- More debug/error messages,
- unconventional index period support.
*********************************************************/
/*********************************************************
21 January 2018: HxCFloppyEmulator 2.1.8.0
New Loader : Atari ATR file image loader.
New Write & Loader : HFE V3 : variable bitrate and other proctections support.
(Experimental ! The file format definition is not yet finished !)
Kryoflux raw files Writer : Fix dead lock with tracks without pulse.
Amiga DOS image browser : 85 tracks AmigaDos image support.
Disk Image browser (FAT & AmigaDOS) : Fix null-sized file import issue.
Disk Image browser (FAT & AmigaDOS) : Can now delete folders.
All image loaders : Fix possible track skew calculation error.
Emax image loader : GAP fixed to 30.
Thomson *.FD loader : Sector interleave set to 7
Command line tool : -uselayout option can be now used to specify external xml disk layout file.
*********************************************************/
/*********************************************************
22 January 2017: HxCFloppyEmulator 2.1.6.0
XML format definitions : Korg DSS1 DD disks added.
XML format definitions : Emax II disks added.
Command line tool : USB loader -> Raw loader added.
Amstrad DSK file added to the batch converter export list.
New Writer : Thomson *.FD writer.
Thomson *.FD loader fixed : Side 1 ID corrected to 0.
D88 Writer fixed : Cylinder and Side ID correctly set.
ImageDisk (*.IMD) export : Deleted data mark and data CRC error flags supported.
FAT12/16 Disk browser : Entries First cluster readback corrected. (With high word uninitialized).
IMG loader : More disk sizes support added.
DosDiskBrowser : 1.743MB & 1.764MB added.
64bits systems : Batch converter and Dos Disk browser issues fixed.
MacOS X & Linux version : file export -> Auto-append the file extension.
Track editor : Disk flux stream reverse function.
Track viewer & editor : GUI layout changed/updated.
*********************************************************/
/*********************************************************
01 January 2016: HxCFloppyEmulator 2.1.4.0
New Loader : *.ANA AnaDisk file loader.
New Loader : VFDDAT file loader.
New Loader : Densei Sirius VFD DAT Loader.
New Writer : *.DIM writer.
New Writer : *.ADZ writer.
New Writer : *.TRD Writer.
New Loader : Atari ST *.STW Loader.
New Writer : Atari ST *.STW Writer.
New Writer : Atari ST *.ST Writer.
New Writer : Atari ST *.STX Writer.
STX Loader/Writer : Weak bits mask support added, Loader/writer improved.
SCP Loader/Writer : Loader/writer improved.
D88 Loader : Gap3 setting corrected.
Dos disk browser : More disks layouts.
libhxcfe : New track support : AED6200P.
XML format definitions : Mictrotan 65 TANDOS.
Flux Stream Analyzer : Possible segmentation fault corrected.
Flux Stream Analyzer : Input filtering reduced.
Kryoflux Stream Loader (*XX.X.raw) / analyser : NFA over index support added.
Track editor : Add & Remove track functions added.
Track editor : RPM & Bitrate change functions added.
Track editor : Insertion function added.
Track editor : Negative offset support.
Disk viewer : Image CRC32, library version and file name displayed.
Disk viewer : Track(s) type displayed.
Disk viewer : Cells density displayed.
Progess bar added for the loaders/writers.
SD/USB Emulator setting window : Advanced pinout settings added.
Code sources fixes/changes for GCC, Clang and VS2015 x86 & x64 compilation support.
And many more fixes and improvements...
*********************************************************/
/*********************************************************
05 October 2014: HxCFloppyEmulator 2.0.26.0
New Loader : PC Magazine (FLP) file format support added.
GUI - Track viewer window : Track editing functionality added, internal sanity check added.
libhxcfe : Casio FZF loader -> non sector-aligned file image size issue corrected.
libhxcfe : Generic flux stream analyzer enhanced - Track encoding & RPM correctly reported.
Batch converter : Now use the folder name for the output filename while converting KF stream files (raw).
FAT12 Disk Browser: PC98 FAT disk support enhanced, free space reporting corrected.
Raw Loader - Predefined raw formats added (XML) :
- Logical Interchange Format (LIF) 3"1/2 264KB (single side).
- Logical Interchange Format (LIF) 3"1/2 616KB (double side).
- Logical Interchange Format (LIF) 3"1/2 1232KB (HD).
- Logical Interchange Format (LIF) 5"1/4 264KB.
*********************************************************/
/*********************************************************
25 may 2014: HxCFloppyEmulator 2.0.22.0
GUI - Track viewer window : New viewer mode -> Disk surface view mode.
Raw loader : UKNC Russian computer support added.
New Writer : BMP file (Disk/circular layout) -> Disk layout can now be exported into a BMP file (for disk analysis) !
libhxcfe : Correction of the UTF8 path support in some loaders/writers.
New Loader : SPS CT Raw file format support added. (NOTE : No weak bits support for the moment !)
libhxcfe : Generic flux stream analyzer enhanced.
Disk Browser : ADFLib fseek corrected.
*********************************************************/
/*********************************************************
03 January 2014: HxCFloppyEmulator 2.0.20.1
Disk Browser : AmigaDOS disk support added ! Amiga Files can be read/write/deleted with the Disk Browser !
New Writer : XML files -> Disk layout can now be exported into XML !
New Loader : XML files -> A disk can be generated from an XML file !
Raw Loader : An XML file can now be used as disk layout !
General : Low level sector reader and track display speed-optimized.
MacOS X : Executable now compiled with the "-mmacosx-version-min=10.5" option
-> Leopard,Snow Leopard,Lion,Mountain Lion & Mavericks supported.
*********************************************************/
/*********************************************************
08 December 2013: HxCFloppyEmulator 2.0.18.4
TRS80 DMK Loader : Image Sanity check -> Minimum track number changed from 30 to 1 track.
Predefined raw formats added : Ensoniq Mirage 440KB, E-mu Emax DD 800KB, GeneralMusic GEM S3 1600KB, GeneralMusic GEM WX 1440KB.
libhxcfe : Track Generator -> hxcfe_setTrackType function added.
libhxcfe : Track alteration functions -> hxcfe_getSide & hxcfe_shiftTrackData function added.
libhxcfe : XML floppy file definition -> <track_list></track_list> Track definition fields working.
New track support : Data disk Arburg format.
New track support : System disk Arburg format.
New Writer : SSD Speccy DOS file.
New Writer : Amiga ADF files.
New Loader : SCP files (SuperCard Pro) (WIP).
New Writer : SCP files (SuperCard Pro) (WIP).
New Writer : Kryoflux raw files.
New Writer : BMP file (Disk layout picture).
libhxcfe : Transitions level flux analyzer functions.
libhxcfe : Generic flux stream analyzer enhanced.
ADF, DMS, MSA, ST Loaders : 4 empty tracks added at the end of the disk.
D88 Loader : Odd track number issue corrected.
CPC EDSK writer : Some missing flag support added. (Deleted address mark & CRC flags).
Sega System24 Loader : New format added ( 8192B + 3*1024B + 512B + 256B sectors).
Floppy Dump : Default step rate set at 16ms.
zlib updated : zlib 1.2.8
Amiga/UAE Extended ADF file loader : Amiga DOS track offset loading corrected.
*********************************************************/
/*********************************************************
06 August 2013: HxCFloppyEmulator 2.0.16.0
FAT12 Loader/generator : Files size, disk size & disk free size displayed, lots of sanity checks added.
TRS80 Writer : Bad free() removed.
General : Software passed with valgrind : Some memory leaks and possible issues corrected !
*********************************************************/
/*********************************************************
16 July 2013: HxCFloppyEmulator 2.0.15.1
FAT12 Loader/generator : Default file creation date set to 1985 to avoid issue with non year 2000 compatibles machines (Kawasaki JS30 robots...).
Apple 2 Sectors generator : End of sector sync corrected, 6&2 GCR encoder corrected.
Track viewer : Sectors on track boundary display issue corrected.
*********************************************************/
/*********************************************************
14 July 2013: HxCFloppyEmulator 2.0.15.0
New Loader : SpeccyDos *.SDD support added
New Loader : Apple 2 DOS 3.3 (*.DO) & ProDOS (*.PO) raw file image added.
New Writer : HFE file with the HDDD A2 support for Apple II (http://www.bootzero.com/HDDD_A2_v1.2/HDDD_A2v1.2.html)
New Writer : Atari ST MSA file.
New Writer : TRS 80 *.JV3 file. (Done by David Barr ! Thanks to him :) )
New Writer : TRS 80 *.DMK file.
New Writer : PC88 *.D88 file.
FAT12 Loader/generator : Atari ST 902KB format corrected.
FAT12 Loader/generator : Atari ST 4.23MB format corrected.
HFE File Writer : Track padding function corrected.
EDE File Loader : edt & edv file support added, ASR 10 gap3 adjusted to 36.
JV3 File Loader : Sector interleaving correctly implemented.
IMD File Writer : No allocated sector issue corrected.
XDMS Lib : UTF8 path support added.
LIBSAP Lib : UTF8 path support added.
New Track/Sector support : GCR "6 and 2" Apple II DOS 3.3/ProDos.
FAT12 Disk Browser: Handle freeing corrected
Raw Loader - Predefined raw formats added :
- Roland W30/S330/W50/S50/S550 DD Floppy Disk.
- OS9 1280KB Floppy Disk.
- Linn/Forat 9000 Floppy Disk.
- KORG T3 3"5 HD Floppy Disk.
- Atari ST 3"5 DD Floppy Disk
- Standard 3"5 DOS ED Floppy Disk
- Special 2.5MB DOS EXHD Floppy Disk
- Special 4.5MB DOS EXHD Floppy Disk.
- Special 6.78MB DOS EXHD Floppy Disk.
Updated:
- Ensoniq EPS 3"5 HD Floppy Disk : Gap3 adjusted.
- Standard 3"5 DOS HD Floppy Disk : Gap3 adjusted.
- Standard 3"5 DOS DD Floppy Disk : Gap3 adjusted.
GUI - Drag & Drop Support : URI type path support added (Linux).
GUI - Track viewer window : New buttons to enable/disable track format analysis.
GUI - Log window : New buttons to enable/disable logs messages.
*********************************************************/
/*********************************************************
24/03/2013: HxCFloppyEmulator 2.0.12.2
- The HxC Floppy Software was completely reworked - Main changes since the version 1.6.11.16 :
New Features / Changes / Issues solved :
-> GUI now Based on FLTK : http://www.fltk.org/
-> Windows / Mac / Linux support ( http://torlus.com/floppy/forum/viewtopic.php?f=1&t=1120 ;) )
-> New library : libhxcfe -> Contains the floppy management functions (track generator/images loaders/analyser/file system layer...).
-> New library : libusbhxcfe -> Contains the HxC USB Floppy Emulator support layer.
-> New Integrated DOS Disk browser : Can generate / add / get / remove files from any DOS HFE files.
-> New Track Viewer/Analyser : Low level floppy track is now analysed and displayed.
-> "Load Raw image" : Predefined floppy disk format description in XML (based on Expat XML Parser)
-> New low level Track format : TYCOM (custom FM) & MEMBRAIN (custom MFM)
-> Floppy disk dump : "missing sector" issue with some FDC corrected.
-> FM Track format : desync added to the end of the track to solve the SCAN command issue with some FDC.
-> Disk Browser : Support of special/custom 2.5MB DD & 4.5MB HD FAT floppy disk format.
-> Batch converter : It is now possible to batch convert RAW images files.
-> Track pregap support/setting added.
-> Some issues corrected & enhancement in the following loader : D88,JV3,DMK,IMD,AFI,EDE,OricDSK,Emax...
-> New file export support : TI99/4A V9T9 file image
-> New Loader : Kryoflux Stream Loader (*XX.X.raw) / analyser.
-> New Loader : Sega System24 Loader (*.S24)
-> New Loader : Apple 2 NIB image support added. (*.NIB)
-> New Loader : Casio FZF floppy image support added.
-> W30 Loader : Roland S50/S330/S550 image support added.
-> HFE Files : New alternate format flags for the track 0 side 0 & side 1.
-> Sanity check function added to some loader.
-> And a lot of minor corrections/enhancement too.
*********************************************************/
/*********************************************************
04/03/2012: HxCFloppyEmulator 1.6.11.16
-> Akai S950 DD & Akai S950 HD interface mode support added (need firmware v1.6.4.4 or more)
*********************************************************/
/*********************************************************
09/10/2011: HxCFloppyEmulator 1.6.11.15
-> zlib updated : zlib 1.2.5
-> New files Support : Winimage *.IMZ file.
-> New files Support : *.GHK (Ensoniq EPS) file image support.
-> Oric DSK : Deleted address mark support added!
-> TI99/4A TI99PC99 loader : sector search function corrected.
-> TI99 V9T9 format : New disk geometry supported, double sided disk support corrected.
*********************************************************/
/*********************************************************
04/09/2011: HxCFloppyEmulator 1.6.11.6
-> New files Support : Roland W30 file image support.
-> BUG : HFE writer buffer overflow corrected.
-> SAP Thomson file support Enhanced.
-> STT Atari ST file support : Track signature check added.
-> Pasti / STX Atari ST file support : Support enhanced, lots of bugs corrected.
-> CamputersLynx LDF file format : CamputerLynx support corrected. (Tested by John Koushappas).
-> Amiga ADF file support : HD disk support.
-> CPC/Spectrum DSK file support: CRC Error handling corrected.
-> DMK file support: DMK file format detection enhanced.
-> Ensoniq SQ-80 : Ensoniq SQ-80 disk format corrected.
-> IPF File format (http://www.softpres.org/)
- unaligned track size support added.
-> MSX File format : 16*2*256*80 file image support added.
-> TI99 V9T9 format : Start sector id corrected.
-> USB support layer : unaligned track size support added, some bugs corrected.
*********************************************************/
/*********************************************************
15/06/2011: HxCFloppyEmulator 1.6.9.0
-> New files Support : Kurzweil KRZ file support.
-> New files Support : EDE EDM (Ensoniq Mirage) file image support.
-> a new "About" window ;).
*********************************************************/
/*********************************************************
22/05/2011: HxCFloppyEmulator 1.6.8.1
-> Amiga/UAE Extended ADF file (new format) loader : crash corrected (Bitrate corrected).
-> All Amiga loader (IPF,ADF,DMS...) : Index timing adjusted.
-> Track encoder : Amiga track post gap corrected.
*********************************************************/
/*********************************************************
17/05/2011: HxCFloppyEmulator 1.6.8.0
Major update:
-> New track generator implemented :
- Better implementation.
- More powerful API
- Less memory usage
- Multi format support : ISO, IBM, Amiga.
- Variable bitrate support.
- Auto GAP3 calculation.
-> Use of the new track generator for Most of file loaders:
- Code clean up.
- Code size optimization.
-> New files Support : *.ADF Amiga/UAE Extended ADF file format (old and new format)
-> New files Support : *.ADF Acorn file format
-> New files Support : *.SSD/*.DSD Acorn BBC file format.
-> New files Support : *.ADL Acorn BBC file format.
-> New files Support : *.D77/*.88D/*.D8U/*.2D/*.D68
-> New files Support : *.FDI file format. (Zx Spectrum...)
-> New files Support : *.LDF (CamputersLynx) file format. (Beta)
-> New files Support : *.D81 file format (C64+1581). (Beta)
-> New files Support : *.DMK file format (TRS-80)
-> New files Support : *.vegasdsk file format ("Tavernier" / Vegas 6809)
-> D88 files Support : 1DD format support
-> Ensoniq file support: skew, interleave corrected.
-> Fat12 floppy generator : Random Serial number.
-> JV3 files support : MFM track support corrected.
-> Index timing corrected.
-> RAW file loader window :
- New parameter : Skew, Auto Gap
-> SDCard Settings window :
- New boot mode parameters.
-> Floppy dump :
- Retry parameter.
- Floppy disk sectors layout view.
-> MacOsX xtools support correction.
And many others corrections and improvements :-)
*********************************************************/
/*********************************************************
21/01/2011: HxCFloppyEmulator 1.5.2.1
-> BUG : Floppy dump tool broken. fixed.
*********************************************************/
/*********************************************************
11/01/2011: HxCFloppyEmulator 1.5.2.0
-> New files Support : Atari ST DIM image (*.DIM) added.
-> New files Support : TI99 V9T9 (*.V9T9 / *.PC99) added.
-> IPF File format (http://www.softpres.org/)
> overlap bug corrected
-> Internal : Tracklen is now the number of bit in the track.
-> Internal/HFE generator : Track encoding code now set correctly.
-> ISO/IBM track generator : ISO FM track data mark value corrected/changed to 0xFB
*********************************************************/
/*********************************************************
22/12/2010: HxCFloppyEmulator 1.5.1.0
-> New files Support : Jeff Vavasour Color Computer Disk Image format (*.JVC) added.
-> Floppy disk dump tool/ HFE conversion : Bitrate value are now corrected.
-> Floppy disk dump tool : a small GUI change.
-> D88 file format support improved.
-> HDM file support : gap len increased to 116.
-> FAT12 Floppy Generator enhanced : More FAT12 floppy format available, FAT geometry adjusted/corrected.
-> FAT12 Floppy Generator : Sources files on the PC side are now correctly closed in case of fail.
-> E-Mu SP1200 support : E-Mu SP1200 RAW file image support added (*.sp1200fd)
-> ISO/IBM track generator : Skew/interleave generator bug corrected.
*********************************************************/
/*********************************************************
15/11/2010: HxCFloppyEmulator 1.5.0.0
-> New Feature : Floppy disk dump tool : To use this tool you need the fdrawcmd driver (http://simonowen.com/fdrawcmd).
-> E-Mu Emulator I support : E-Mu Emulator I FM track support added (generator & sector extractor)
-> E-Mu Emulator I support : E-Mu Emulator I RAW file image support added (*.emuiifd)
*********************************************************/
/*********************************************************
09/11/2010: HxCFloppyEmulator 1.4.0.1
-> GUI : SDCard buzzer sound volume control added.
*********************************************************/
/*********************************************************
07/11/2010: HxCFloppyEmulator 1.4.0.0
-> GUI reworked.
-> Double step drive emulation support added.
-> IMD Loader : Default interface mode change to Shugart.
-> RAW Loader : Default interface mode change to Shugart.
-> USB HxC Floppy Emulator : Shugart mode corrected.
*********************************************************/
/*********************************************************