RDRVSX32: FAT32 RAM drive for HimemSX (Announce)
> well. Any conclusions about your efforts?
Preliminary discussion and conclusions.
The original aim of the exercise was to test out RDRVSX32 in the creation of FAT32 RAM drives - a required aspect was the creation of RAM drives larger than 4 GByte (which automatically meant to be created in SuperXtendedMemorySpace (Abbreviated to SMS in my notes).
Previously, before March, DOS users only had access to RAM drives no larger than 4 GByte due to FAT 16 limitation.
Initially, in the development process there were problems that the FAT32 RAM drive could be created on AMD machines but not my INTEL machine - which resulted in this thread being on BTTR in the first place. Eventually I overcame this INTEL/AMD difference by simply reconfiguring FDconfig.sys (I used FreeDOS RC5 at the time, now known as v1.3). Apparently non-FreeDOS systems, both INTEL and AMD, were never affected.
At present I can only do testing in FreeDOS on a bare metal setup - I have not been successful to obtain MS DOS 7.1 to install beside FreeDOS. At this stage I did not do any Virtual Machine setup testing.
From a limited number of tests, I successfully achieved RAM drives of about 28 GByte and worked with file sizes up to 4 GByte(minus 1 byte) on all trials. My hardware is limited to 32 GByte RAM and since the first 4 GByte is reserved for (XMS + 1 MByte conventional memory) - at this stage I cannot confirm/deny on whether it is possible to have RAM drives > 32 GByte.
The speed of the FAT32 RAM drive is impressive - without using timer routines to measure - to copy from say a 1 GByte file in XMS and transform, by way of binary DOS file addition, to a 4 GByte file (in SMS) took only about 1 second. On the contrary, to copy a 4 GByte file to/from RAM to/from my USB stick takes over 2 hours (using FreeDOS).
So from a very limited set of testing conditions it appeared that RDRVSX32 is highly efficient and accurate in the creation of FAT32 RAM drives (in SMS).
Early on in this thread, Japheth indicated problems when working with LFN (my tests were only with 8.3 format) - and a number of RDRVSX32 iterations were written by the author (Jadoxa).
At this point I went off in a slight "tangent" - so instead of aiming for further RDRVSX32 testing in a variety of situations, I was involved in independent testing of LFN in FAT32 RAM drive, which led me into LFN testing of FAT32 RAM drive in XMS, FAT16 (XMS/SMS) and FAT12 (XMS/SMS) and USB stick equivalents of FAT 12/16/32. No tests were done on a Hard Drive or SATA SSD and similarly no tests for my 3.5 inch USB floppy drive (which seems to be broken).
A further "tangent" occurred with using a more reliable timing method (Jadoxa's RT program) than examining time differences via DOS prompt time stamps. Also another tangent resulted from Jadoxa supplying two versons for LFN - namely doslfn and doslfnMS.
So, to try to maintain "fairness" in various testing "environments", I attempted to automate measurements via ".bat files" for all possibilities for an extremely small sample set (10 files + 4 directories). The sole intention was to determine if the two doslfn{MS} were significantly different is speed. The timing resolution I adopted was milli-seconds ( RT program can offer micro-seconds resolution). It was inconclusive with only 10 files+ - so lastly bumped up to 100+ files. Apart from the problem (mentioned below):-
Conclusion To a resolution of 0.02 seconds there appears to be no timing differences between doslfn and doslfnMS for a sample size of 100+ files - however a more realistic (for me) size
set should be a minimum of 500 files + 500 1st level sub-directories AND NOT YET TESTED at a very deep level (say 10 levels down) also. This last addition may be interesting since my experience with Windows 10 is that serious problems (in Windows) occurs when working with >6 levels down, e.g. in searches.
Problems I have observed...
SHSURdrv cannot support 100+ files in the ROOT directory of FAT12 and FAT16 - so cannot test doslfn{MS} for larger file sets.
It appears that doslfn{MS} cannot support LONG FOLDER NAMES (whereas Windows can).
When using the TIME STAMP as part of the DOS Prompt - strange timing errors occur (as if time going backwards on occassions) - the best explanation I can give for this is that my machine is INTEL (i7) with 4 cores and each core acts as 2 logical processors. Even though, as I understand, DOS in bare metal mode only is working on one core at any one time, it may not be working on only one logical processor - so, any (exe/com/sys/bat) may be simultaneously processed by two logical processors (but by the one physical core). Two important factors are involved - pipelining (which came with the advent of 486 processors) and the way instruction codes are presented (c/f 8-byte boundaries for 64 bit machines). So, with "look ahead" techniques, a code stream split over two logical processors may get "unsynchronized" slightly - so the DOS prompt executed by logical processor #1 is finished AFTER RT.exe has finished on logical processor #2. However, under otherwise identical conditions, with an AMD quad core processor - there are only as many logical processors as physical cores (hence no pipelining I think) and there is only one process execution code stream running in DOS.
Hopefully, issues with SHSURDRV ROOT tables limit and Long FOLDER Names (once verified independently to see if the problem still exists) will be fixed in the near future. However, if I am the only one to be using FAT12 and Long FOLDER Names, I can imagine it will be a very long time, if ever, before being fixed.
Another "tangent" occurred with the using of SMARTDRV (to help speed things up).
Conclusion using SMARTDRV has no observed significant speed gains when doing DIR on various media/formats.
By using SMARTDRV many things were "broken" with RAM drives - resolved by re-arranging setup sequence of all combinations of RAM drive for FAT12/16/32 + XMS/SMS.
Summary
From limited testing on a 32 Gbyte INTEL computer, it is possible to achieve a 28 GByte FAT32 RAM drive. Speed is very good - > ~1 GByte per second for file transfers (RAM to RAM). Cannot confirm/deny if >32 GByte RAM drive is possible.
doslfn and doslfnMS appear to be the same speed for up to 100+ files (restricting to 0.02 second timing resolution).
No apparent advantage in using SMARTdrv for DIR on any media/format - and consideration when simultaneously having RAM drives as FAT 12/16/32 + XMS/SMS (i.e. 6 different kinds of RAM drives).
Apparent limitations with SHSURDRV for FAT 12/16 ROOT directories (only) (literature mentions can be as low as 64 entries - USB stick (via Windows allows 100+))
doslfn{MS} does not appear to work with long FOLDER Names (need independent confirmation)
My testing limited to FreeDOS 1.3 platform - not able to test via other platform (e.g. MS DOS 7.1)
RDRVSX32 does work with both INTEL and AMD - need consideration when using FreeDOS FDconfig.sys/FDauto.bat
There appears to be timing "racing" conflicts with Time Stamps as part of DOS Prompt comparing running programs (such as RT.exe) - attributed to on only INTEL > 486 processors with more than one logical processor for each physical core (so does not exist maybe for AMD).
"Screen Thief" and "RT.exe" and "Trace.com" utilities very useful for recording of events.
Further, more rigorous testing needed, but RDRVSX32 may be good enough "as-is" for over 99.99% of applications (my guess).
Complete thread:
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 13.03.2022, 13:58 (Announce)
- RDRVSX32: FAT32 RAM drive for HimemSX - Japheth, 13.03.2022, 16:50
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 14.03.2022, 02:24
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 17.03.2022, 06:05
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 17.03.2022, 08:15
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 17.03.2022, 10:27
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 17.03.2022, 13:00
- RDRVSX32: FAT32 RAM drive for HimemSX - Zyzzle, 17.03.2022, 23:06
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 18.03.2022, 02:35
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 18.03.2022, 06:58
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 19.03.2022, 03:18
- RDRVSX32: FAT32 RAM drive for HimemSX - Japheth, 19.03.2022, 05:24
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 19.03.2022, 09:26
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 19.03.2022, 03:18
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 01.04.2022, 09:33
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 24.04.2022, 07:38
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 24.04.2022, 09:43
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 24.04.2022, 13:35
- RDRVSX32: FAT32 RAM drive for HimemSX - tom, 16.05.2022, 20:40
- RDRVSX32: FAT32 RAM drive for HimemSX - Japheth, 18.05.2022, 10:26
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 21.05.2022, 13:23
- RDRVSX32: FAT32 RAM drive for HimemSX - tom, 21.05.2022, 15:14
- RDRVSX32: FAT32 RAM drive for HimemSX - tom, 21.05.2022, 17:41
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 22.05.2022, 09:23
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 23.05.2022, 13:53
- RDRVSX32: FAT32 RAM drive for HimemSX - tom, 21.05.2022, 15:14
- RDRVSX32: FAT32 RAM drive for HimemSX - tom, 16.05.2022, 20:40
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 26.04.2022, 05:20
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 24.04.2022, 13:35
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 24.04.2022, 09:43
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 24.04.2022, 07:38
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 18.03.2022, 06:58
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 17.03.2022, 13:00
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 17.03.2022, 10:27
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 17.03.2022, 08:15
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 17.03.2022, 06:05
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 14.03.2022, 02:24
- RDRVSX32: FAT32 RAM drive for HimemSX - Zyzzle, 14.03.2022, 06:12
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 15.03.2022, 15:25
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 16.03.2022, 04:30
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 16.03.2022, 06:44
- RDRVSX32: FAT32 RAM drive for HimemSX - rr, 16.03.2022, 09:01
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 16.03.2022, 14:14
- RDRVSX32: FAT32 RAM drive for HimemSX - Zyzzle, 17.03.2022, 03:04
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 17.03.2022, 05:04
- RDRVSX32: FAT32 RAM drive for HimemSX - Zyzzle, 17.03.2022, 03:04
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 16.03.2022, 15:59
- RDRVSX32: FAT32 RAM drive for HimemSX - tom, 16.03.2022, 16:20
- RDRVSX32: FAT32 RAM drive for HimemSX - Japheth, 16.03.2022, 17:29
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 17.03.2022, 04:12
- RDRVSX32: FAT32 RAM drive for HimemSX - Japheth, 17.03.2022, 08:01
- RDRVSX32: FAT32 RAM drive for HimemSX - Japheth, 16.03.2022, 17:22
- RDRVSX32: FAT32 RAM drive for HimemSX - tom, 16.03.2022, 18:34
- RDRVSX32: FAT32 RAM drive for HimemSX - Zyzzle, 17.03.2022, 03:10
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 17.03.2022, 04:22
- RDRVSX32: FAT32 RAM drive for HimemSX - Japheth, 17.03.2022, 11:32
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 01.04.2022, 14:28
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 01.04.2022, 14:58
- RDRVSX32: FAT32 RAM drive for HimemSX - tom, 16.03.2022, 16:20
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 16.03.2022, 14:14
- RDRVSX32: FAT32 RAM drive for HimemSX - rr, 16.03.2022, 09:01
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 16.03.2022, 06:44
- RDRVSX32: FAT32 RAM drive for HimemSX - Richard, 16.03.2022, 04:30
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 15.03.2022, 15:25
- RDRVSX32: FAT32 RAM drive for HimemSX - Japheth, 14.03.2022, 15:09
- RDRVSX32: FAT32 RAM drive for HimemSX - tom, 15.03.2022, 12:25
- RDRVSX32: FAT32 RAM drive for HimemSX - Japheth, 15.03.2022, 13:37
- RDRVSX32: FAT32 RAM drive for HimemSX - tom, 15.03.2022, 12:25
- RDRVSX32: FAT32 RAM drive for HimemSX - Japheth, 16.03.2022, 07:34
- RDRVSX32: FAT32 RAM drive for HimemSX - jadoxa, 16.03.2022, 07:51
- another bug in doslfn - Japheth, 19.03.2022, 08:09
- another bug in doslfn - jadoxa, 19.03.2022, 09:29
- another bug in doslfn - Japheth, 19.03.2022, 10:35
- another bug in doslfn - Japheth, 20.03.2022, 08:10
- another bug in doslfn - jadoxa, 24.03.2022, 13:32
- another bug in doslfn - Japheth, 25.03.2022, 08:04
- another bug in doslfn - jadoxa, 26.03.2022, 08:49
- another bug in doslfn - Richard, 27.03.2022, 03:06
- another bug in doslfn - tom, 27.03.2022, 14:41
- another bug in doslfn - jadoxa, 28.03.2022, 05:06
- another bug in doslfn - Richard, 28.03.2022, 06:40
- another bug in doslfn - Richard, 28.03.2022, 07:12
- another bug in doslfn - jadoxa, 28.03.2022, 08:59
- another bug in doslfn - Oso2k, 04.01.2025, 00:41
- another bug in doslfn - jadoxa, 04.01.2025, 06:46
- another bug in doslfn - Oso2k, 04.01.2025, 09:31
- another bug in doslfn - jadoxa, 04.01.2025, 06:46
- another bug in doslfn - Oso2k, 04.01.2025, 00:41
- another bug in doslfn - glennmcc, 28.03.2022, 20:26
- another bug in doslfn - jadoxa, 28.03.2022, 08:59
- another bug in doslfn - Japheth, 27.03.2022, 04:48
- another bug in doslfn - jadoxa, 28.03.2022, 05:08
- about to fix the "final" doslfn bug - Japheth, 29.03.2022, 05:45
- about to fix the "final" doslfn bug - Japheth, 31.03.2022, 22:51
- about to fix the "final" doslfn bug - tom, 01.04.2022, 19:55
- about to fix the "final" doslfn bug - jadoxa, 02.04.2022, 09:55
- about to fix the "final" doslfn bug - Japheth, 03.04.2022, 19:25
- about to fix the "final" doslfn bug - tom, 03.04.2022, 20:25
- about to fix the "final" doslfn bug - Japheth, 04.04.2022, 07:34
- about to fix the "final" doslfn bug - jadoxa, 06.04.2022, 15:05
- about to fix the "final" doslfn bug - Japheth, 06.04.2022, 18:41
- about to fix the "final" doslfn bug - glennmcc, 06.04.2022, 20:18
- about to fix the "final" doslfn bug - jadoxa, 07.04.2022, 03:02
- about to fix the "final" doslfn bug - Japheth, 07.04.2022, 06:58
- about to fix the "final" doslfn bug - Richard, 09.04.2022, 01:11
- about to fix the "final" doslfn bug - Rugxulo, 09.04.2022, 03:38
- about to fix the "final" doslfn bug - Richard, 09.04.2022, 06:15
- about to fix the "final" doslfn bug - jadoxa, 09.04.2022, 12:46
- about to fix the "final" doslfn bug - Richard, 09.04.2022, 20:41
- about to fix the "final" doslfn bug - jadoxa, 10.04.2022, 04:54
- about to fix the "final" doslfn bug - Richard, 10.04.2022, 11:51
- about to fix the "final" doslfn bug - jadoxa, 10.04.2022, 14:42
- about to fix the "final" doslfn bug - Richard, 10.04.2022, 15:43
- about to fix the "final" doslfn bug - tom, 10.04.2022, 22:08
- about to fix the "final" doslfn bug - Richard, 11.04.2022, 04:51
- about to fix the "final" doslfn bug - tom, 10.04.2022, 17:45
- about to fix the "final" doslfn bug - Richard, 10.04.2022, 18:44
- about to fix the "final" doslfn bug - tom, 10.04.2022, 19:51
- about to fix the "final" doslfn bug - Richard, 11.04.2022, 04:05
- about to fix the "final" doslfn bug - jadoxa, 11.04.2022, 05:05
- about to fix the "final" doslfn bug - Richard, 11.04.2022, 07:58
- about to fix the "final" doslfn bug - jadoxa, 11.04.2022, 08:47
- about to fix the "final" doslfn bug - Richard, 11.04.2022, 11:20
- about to fix the "final" doslfn bug - jadoxa, 11.04.2022, 12:05
- about to fix the "final" doslfn bug - Richard, 12.04.2022, 06:03
- about to fix the "final" doslfn bug - jadoxa, 12.04.2022, 10:34
- about to fix the "final" doslfn bug - Richard, 12.04.2022, 11:28
- about to fix the "final" doslfn bug - Japheth, 12.04.2022, 12:35
- about to fix the "final" doslfn bug - Richard, 12.04.2022, 16:28
- about to fix the "final" doslfn bug - Japheth, 12.04.2022, 17:45
- about to fix the "final" doslfn bug - Richard, 13.04.2022, 09:58
- about to fix the "final" doslfn bug - jadoxa, 13.04.2022, 10:33
- about to fix the "final" doslfn bug - Richard, 13.04.2022, 11:07
- about to fix the "final" doslfn bug - jadoxa, 13.04.2022, 10:33
- about to fix the "final" doslfn bug - Richard, 14.04.2022, 02:19
- about to fix the "final" doslfn bug - Japheth, 14.04.2022, 08:34
- about to fix the "final" doslfn bug - tom, 14.04.2022, 11:42
- about to fix the "final" doslfn bug - Richard, 12.04.2022, 16:28
- about to fix the "final" doslfn bug - jadoxa, 12.04.2022, 16:22
- about to fix the "final" doslfn bug - Japheth, 12.04.2022, 17:37
- thoughts about systematic testing - tom, 12.04.2022, 19:18
- about to fix the "final" doslfn bug - Zyzzle, 13.04.2022, 10:27
- about to fix the "final" doslfn bug - Richard, 13.04.2022, 11:24
- about to fix the "final" doslfn bug - Richard, 13.04.2022, 16:56
- about to fix the "final" doslfn bug - jadoxa, 14.04.2022, 15:23
- about to fix the "final" doslfn bug - Richard, 14.04.2022, 20:49
- about to fix the "final" doslfn bug - jadoxa, 15.04.2022, 04:30
- about to fix the "final" doslfn bug - Richard, 15.04.2022, 06:47
- about to fix the "final" doslfn bug - jadoxa, 15.04.2022, 09:34
- about to fix the "final" doslfn bug - Richard, 17.04.2022, 09:11
- about to fix the "final" doslfn bug - Richard, 17.04.2022, 13:25
- about to fix the "final" doslfn bug - Richard, 17.04.2022, 14:40
- about to fix the "final" doslfn bug - Richard, 19.04.2022, 06:14
- about to fix the "final" doslfn bug - jadoxa, 15.04.2022, 09:34
- about to fix the "final" doslfn bug - tom, 15.04.2022, 11:32
- about to fix the "final" doslfn bug - jadoxa, 18.04.2022, 10:14
- about to fix the "final" doslfn bug - tom, 18.04.2022, 12:09
- about to fix the "final" doslfn bug - jadoxa, 18.04.2022, 10:14
- about to fix the "final" doslfn bug - Richard, 15.04.2022, 06:47
- about to fix the "final" doslfn bug - jadoxa, 15.04.2022, 04:30
- about to fix the "final" doslfn bug - Richard, 14.04.2022, 20:49
- about to fix the "final" doslfn bug - jadoxa, 14.04.2022, 15:23
- about to fix the "final" doslfn bug - Japheth, 12.04.2022, 17:37
- about to fix the "final" doslfn bug - Japheth, 12.04.2022, 12:35
- about to fix the "final" doslfn bug - Richard, 12.04.2022, 11:28
- about to fix the "final" doslfn bug - jadoxa, 12.04.2022, 10:34
- about to fix the "final" doslfn bug - Richard, 12.04.2022, 06:03
- about to fix the "final" doslfn bug - jadoxa, 11.04.2022, 12:05
- about to fix the "final" doslfn bug - Richard, 11.04.2022, 11:20
- about to fix the "final" doslfn bug - jadoxa, 11.04.2022, 08:47
- about to fix the "final" doslfn bug - Richard, 11.04.2022, 07:58
- about to fix the "final" doslfn bug - jadoxa, 11.04.2022, 05:05
- about to fix the "final" doslfn bug - Richard, 11.04.2022, 04:05
- about to fix the "final" doslfn bug - tom, 10.04.2022, 19:51
- about to fix the "final" doslfn bug - Richard, 10.04.2022, 18:44
- about to fix the "final" doslfn bug - jadoxa, 10.04.2022, 14:42
- about to fix the "final" doslfn bug - Richard, 10.04.2022, 11:51
- about to fix the "final" doslfn bug - jadoxa, 10.04.2022, 04:54
- about to fix the "final" doslfn bug - Richard, 09.04.2022, 20:41
- about to fix the "final" doslfn bug - jadoxa, 09.04.2022, 12:46
- about to fix the "final" doslfn bug - Richard, 09.04.2022, 06:15
- about to fix the "final" doslfn bug - jadoxa, 09.04.2022, 04:29
- about to fix the "final" doslfn bug - Laaca, 11.04.2022, 11:24
- about to fix the "final" doslfn bug - jadoxa, 11.04.2022, 12:15
- about to fix the "final" doslfn bug - Laaca, 11.04.2022, 11:24
- about to fix the "final" doslfn bug - Rugxulo, 09.04.2022, 03:38
- released new HimemSX v3.53 on GitHub - Japheth, 09.04.2022, 21:52
- released new HimemSX v3.53 on GitHub - jadoxa, 10.04.2022, 04:56
- perhaps a small bug in new HimemSX? - Japheth, 10.04.2022, 22:04
- perhaps a small bug in new HimemSX? - jadoxa, 11.04.2022, 02:34
- perhaps a small bug in new HimemSX? - Japheth, 11.04.2022, 05:38
- perhaps a small bug in new HimemSX? - Richard, 11.04.2022, 05:58
- perhaps a small bug in new HimemSX? - Japheth, 11.04.2022, 10:07
- perhaps a small bug in new HimemSX? - Richard, 11.04.2022, 05:58
- perhaps a small bug in new HimemSX? - Japheth, 11.04.2022, 05:38
- perhaps a small bug in new HimemSX? - jadoxa, 11.04.2022, 02:34
- perhaps a small bug in new HimemSX? - Japheth, 10.04.2022, 22:04
- released new HimemSX v3.53 on GitHub - jadoxa, 10.04.2022, 04:56
- about to fix the "final" doslfn bug - Japheth, 06.04.2022, 18:41
- about to fix the "final" doslfn bug - tom, 03.04.2022, 20:25
- about to fix the "final" doslfn bug - Japheth, 03.04.2022, 19:25
- about to fix the "final" doslfn bug - Japheth, 31.03.2022, 22:51
- another bug in doslfn - Richard, 27.03.2022, 03:06
- another bug in doslfn - jadoxa, 26.03.2022, 08:49
- another bug in doslfn - Japheth, 25.03.2022, 08:04
- another bug in doslfn - jadoxa, 19.03.2022, 09:29
- RDRVSX32: FAT32 RAM drive for HimemSX - Japheth, 13.03.2022, 16:50