Path: utzoo!mnetor!uunet!nbires!maa From: maa@nbires.nbi.com (Mark Armbrust) Newsgroups: comp.sys.ibm.pc Subject: Re: Problems with 'df' & 'du' in Picnix, ver 2 Message-ID: <1245@nbires.nbi.com> Date: 6 Feb 88 18:14:58 GMT References: <3841@ihlpl.ATT.COM> Reply-To: maa@nbires.UUCP (Mark Armbrust) Organization: NBI Inc, Boulder CO Lines: 27 Keywords: Picnix, df, du Summary: Just a small bug In article <3841@ihlpl.ATT.COM> db21@ihlpl.ATT.COM (Dave Beyerl) writes: > > I have noted some problems with the utilities 'df' - disk >free space, and 'du' - disk used space, in the recently posted >Picnix, ver 2. > ******************************************** > * Illegal Interrupt No. 0Bh at 22A2:1617 * > ******************************************** I've not looked at the 'du' command yet, but for the 'df' command this is caused by a one character typo! The instruction at 1617h is an INT 11 (0Bh -- COM2:) and it should be an INT 11h (Equipment check). This can be easily fixed by patching: >copy df.exe df.bak >ren df.exe df >debug df -e 1918 (0B) 11 -w -q >ren df df.exe Hope this helps. Mark