Subj : Wayne King (disregard ealier question) BIOS interrupt To : borland.public.cpp.borlandcpp From : "Rob C." Date : Thu Aug 21 2003 03:18 pm disregard ealier question, everything works fine now....though now, what type is returned? How would I print/store the results? #include int readattr(void) { struct REGPACK rp = {0}; rp.r_ax = 0x0800; intr(0x10, &rp); return rp.r_ax & 0x00ff; } int main() { readattr(); //-- what type is returned? How would I print/store //-- the results? return; } .