I have a text file with some content I have to move the cursor in from relative to the BOF and display its content on the screen using int 21h/42h.
here is the code I am working on. I am using windows 98 (16-bit DOS)in VM and it's part of my system programming assignment so I have to use it tried in Turbo c++ with DOSBox but It has some issues.
on printing buff it displays random values
Code
#include <stdio.h>
#include <conio.h>
#include <fcntl.h>
#include <bios.h>
#include <dos.h>
unsigned int handle;
char buff[50];
void main(){
union REGS regs; // set pointer
union REGS regs_r; // read file
handle = open("text.txt", O_RDONLY);
// set pointer to BOF (Begenning of File)
regs.x.bx = handle;
regs.h.ah = 0x42; // LSEEK
regs.h.al = 0x00 // Mode (0) BOF
regs.x.cx = 0;
regs.x.dx = 0;
int86(0x21, ®s, ®s);
// read the file
regs_r.x.bx = handle;
regs_r.x.cx = 0x07; Bytes to read ?
regs_r.h.ah = 0x3fh;
regs_r.x.dx = (unsigned int) buff; // buffer for data
int86(0x21, ®s_r, ®s_r);
printf("DATA : %c", buff);
getch();
clrscr();
}
here are some reference links
any help will be appreciated.
To get the data-segment you could try this way: Declare a far pointer and assign to it the address of your buffer and recast it.
now take the 16 most significant bits from the pointer paying attention to the complement of the sign
It should work.