--
You received this message because you are subscribed to the Google Groups "retro-comp" group.
To unsubscribe from this group and stop receiving emails from it, send an email to retro-comp+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/retro-comp/6180ac76-a259-4213-9b48-7a37596526dan%40googlegroups.com.


I pushed a fix that limits the number of drives to 10. a through j, this is not ideal but it will stop the drive select error.
--
You received this message because you are subscribed to a topic in the Google Groups "retro-comp" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/retro-comp/1z5qN01-iEQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to retro-comp+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/retro-comp/76561582-c7b2-4fe7-8781-4e21237b9927n%40googlegroups.com.
On Sun, 28 Feb 2021 at 18:08, Jay Cotton <lbmg...@gmail.com> wrote:I pushed a fix that limits the number of drives to 10. a through j, this is not ideal but it will stop the drive select error.Maybe use BDOS 24 (DRV_LOGINVEC). It will return you a bitmap in HL of the drives.
You'd still need to catch and handle the errors but it ought to be less often and look better.
--
You received this message because you are subscribed to a topic in the Google Groups "retro-comp" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/retro-comp/1z5qN01-iEQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to retro-comp+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/retro-comp/1e08da81-b453-4223-955f-12e5538ec634n%40googlegroups.com.
On Sunday, February 28, 2021 at 10:28:59 AM UTC-8 Alan Cox wrote:
On Sun, 28 Feb 2021 at 18:08, Jay Cotton wrote:I pushed a fix that limits the number of drives to 10. a through j, this is not ideal but it will stop the drive select error.Maybe use BDOS 24 (DRV_LOGINVEC). It will return you a bitmap in HL of the drives.
--
You received this message because you are subscribed to the Google Groups "retro-comp" group.
To unsubscribe from this group and stop receiving emails from it, send an email to retro-comp+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/retro-comp/7ddfea29-7245-424d-b338-005bdccfdda0n%40googlegroups.com.
...
magic equ 0e600h
seldskf equ magic +(3*9)mov c,a
call seldskfThis will attempt to select the drive in REG C and return HL with a bitmapor NULL if the drive is not populated.
...
To view this discussion on the web visit https://groups.google.com/d/msgid/retro-comp/4f301a23-d28d-4446-9297-f70bb38fa200n%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "retro-comp" group.
To unsubscribe from this group and stop receiving emails from it, send an email to retro-comp+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/retro-comp/166d99a2-ec1e-4552-90ba-34fb1b4de9ebn%40googlegroups.com.
Just updated the REPO with a much better version of find. There is a find.hex file in there that will load on CP/M and work without all the hassle of learning how to build it on linux/cygwin