Re: [Freedos-user] Writing Utilities for FreeDOS

2004-04-25 Thread Yann Bénigot
Steve Nickolas - Using Windoze wrote:

Jay Maus wrote:

Wow, I'm impressed by all the discussion this has sparked. It's good 
to see
an active dev community. So I think I'm nearly ready to start futzing 
around
with FreeDOS code, but it's still a little foreign to me: I'm used to 
32-bit
Windows C++. In Visual Studio, no less. Are there any good books or 
online
guides out there for learning intermediate [Free]DOS 16-bit C 
programming?

Also, do I need a native FreeDOS environment to compile in, or can I
cross-compile with gcc? Also also, is there a good IDE that'll run in
Windows XP, or do I need to use RHIDE in something like DOSBox? I 
remember
using RHIDE on my old old old 486 Laptop the first time I started 
playing
around with DOS code, but it was unbearably slow.

Thanks, I'm really appreciative of the FreeDOS community.
--Jay


gcc can compile and cross-compile 32-bit DOS stuff, but not 16... for 
16-bit C you'll prolly need a DOS-based compiler running on some form 
or emulation of DOS, or Watcom runs native on NT...

-uso.



---
This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek
For a limited time only, get FREE Ground shipping on all orders of $35
or more. Hurry up and shop folks, this offer expires April 30th!
http://www.thinkgeek.com/freeshipping/?cpg=12297
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user

To recompile FreeDOS stuff,I use dosemu 1.2/TurboC 2.01(now freeware).

---
This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek
For a limited time only, get FREE Ground shipping on all orders of $35
or more. Hurry up and shop folks, this offer expires April 30th!
http://www.thinkgeek.com/freeshipping/?cpg=12297
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Extra Gmail Invites

2004-09-01 Thread Yann Bénigot
Frederick Thomas a écrit :
Got a couple of Gmail invites I do not need. If you want 1GB email
account then just reply to this email and I will send one. Have about
two or three left.
regards,
fm
On Wed, 1 Sep 2004 14:38:02 +0200 (MEST), Eric Auer [EMAIL PROTECTED] wrote:
 

Hi Andy, we found that RBIL is indeed wrong: Sector numbers are
actually 0 based for int 25/26, and the FreeDOS kernel treats
them as 0 based, too. You should debug your program a bit
interactively. It will be interesting to find out why FreeDOS
needs the DIR first. Please compare a few kernel versions to
find out if all or only a few are affected by this strange
behaviour.
COMDRIVE strangeness ist the other way round by the way: DIR
statistics are broken, but you can even do a DOSFSCK on the
remote drive without serious problems. BOOTFIX is happy, too.
Maybe drive change (away from default A:) is not reflected in
all of the remote drive status in FreeDOS - but even in PC DOS
things do not work smoothly. I hope that some experts will
eventually read and comment my analysis (another thread, on the
freedos-kernel list) and find some workaround.
For interactivity, contact me on ICQ or join the #freedos IRC
on irc.i7c.org ...
Best, Eric.

---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user
   


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user
 

An offer similar to Gmail already exists. It's called spymac 
(www.spymac.com)

---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_idP47alloc_id808op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


[Freedos-user] Shsucdx ATAPICDD.SYS

2004-09-02 Thread Yann Bénigot
I am trying to make a small FreeDOS bootdisk who use a ramdisk on Z: but 
the CDROM driver won't work:
Z:\DRIVERSDEVLOAD ATAPICDD.SYS
[...]
Found 01 IDE/ATAPI Drives

1 character device installed
Driver staying resident
Z:\DRIVERSSHSUCDX /D:FDCD
[...]
Can't open CD Driver FDCD
[...]
Z:\DRIVERSSHSUCDX /D:FDCD0001
(idem)
Z:\DRIVERSSHSUCDX
(idem)
Z:\DRIVERSSHSUCDX /D:FDCD,X
(idem)
What can I do?
---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Kernel LFN support

2004-09-02 Thread Yann Bénigot
Luchezar Georgiev a crit :
Just thinking maybe can use FreeDOS to rescue NTFS, if too complex 
then drop it.

The read-only version of NTFSDOS is free, but the read-write version 
isn't :(

But the ntfs tools on 
ftp://ftp.ibiblio.org/pub/micro/pc-stuff/freedos/files/util/disk/ntfs.zip 
.Are they GPL?

Is FreeDOS ready for LFN? I mean LFN will affect the FAT table, is 
FreeDOS already spare enough 'space' for the extra space? And other 
disk maintenance program will not cause false alarm. (e.g. corrupted 
FAT table, misallocation of file)

LFNs affect (infect? ;-) only directories, not FATs.
But integrating LFN into kernel will lack flexibility...

No. We have FAT16 and FAT32 kernels, so we can have SFN and LFN kernels.
How about modify the kernel to provide API, and load LFN as a device 
driver? Then we can change the device driver without altering the 
kernel version by version.

It's the driver who provides the API. They're tied together. 
Integrating the driver simplifies it.

---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_idP47alloc_id808op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Shsucdx ATAPICDD.SYS

2004-09-02 Thread Yann Bénigot
16 BIT a écrit :
If it were me, I'd to like this...
Config.sys
lastdrive=z
devicehigh=drivers\atapicdd.sys /d:shsu-cdx
autoexec.bat
lh drivers\shsucdx /d:shsu-cdx,x
At 04:54 PM 9/2/04 +0200, you wrote:
 

I am trying to make a small FreeDOS bootdisk who use a ramdisk on Z: but 
the CDROM driver won't work:
Z:\DRIVERSDEVLOAD ATAPICDD.SYS
[...]
Found 01 IDE/ATAPI Drives

1 character device installed
Driver staying resident
Z:\DRIVERSSHSUCDX /D:FDCD
[...]
Can't open CD Driver FDCD
[...]
Z:\DRIVERSSHSUCDX /D:FDCD0001
(idem)
Z:\DRIVERSSHSUCDX
(idem)
Z:\DRIVERSSHSUCDX /D:FDCD,X
(idem)
   



---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user
 

Thanks you, it works when I load it from config.sys.
---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_idP47alloc_id808op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Shsucdx ATAPICDD.SYS

2004-09-03 Thread Yann Bénigot
Bernd Blaauw a écrit :

I am trying to make a small FreeDOS bootdisk who use a ramdisk on 
Z: but the CDROM driver won't work:
Z:\DRIVERSDEVLOAD ATAPICDD.SYS
[...]
Found 01 IDE/ATAPI Drives

1 character device installed
Driver staying resident
Z:\DRIVERSSHSUCDX /D:FDCD
[...]
Can't open CD Driver FDCD
[...]

You need to specify DEVICE NAME. ATAPICDD.SYS assumes some strange 
name, but definately not FDCD000x
batchfile (cd will be drive X:):
@echo off
devload atapicdd.sys /D:FDCD0001
shsucdx /D:FDCD0001,X

---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user

If I use the /D switch, devload answer Can't open file 0002h...
---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_idP47alloc_id808op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


[Freedos-user] Another FreeDOS BootDisk

2005-04-07 Thread Yann Bénigot
Hi everyone,
I made a new FreeDOS Bootdisk (not really because there are older 
version but in french and which included some non-free softwares and was 
partially in french; I was posting it on an abandonware forum) called 
Another FreeDOS BootDisk (yes that's a stupid name). It uses a ramdisk 
with TurboDSK and findtdsk (from Marc Bailey ) to boot. It includes : 
-Base FreeDOS system (fc, mem, attrib, command...)
-zip and unzip
-defrag
-undelete and unformat
-cwsdpmi
-dosfsck
-part
-two games : 2ktetris and psrinvad
-cmos

It need at least a 386 cpu and 4mb of ram (the ramdisk needs 2mb...)
Download : http://yanou002.free.fr/afdbd.zip (1,4mb)

---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user