Path: utzoo!utgpu!jarvis.csri.toronto.edu!clyde.concordia.ca!uunet!cs.utexas.edu!rutgers!rochester!kodak!ektools!isctsse!pajerek From: pajerek@kadsma.uucp (Don Pajerek) Newsgroups: comp.lang.c Subject: Re: absolute address pointer in MS C 5.1 Keywords: absolute address pointer Message-ID: <1990Jan8.161659.6013@kadsma.uucp> Date: 8 Jan 90 16:16:59 GMT References: <5850@sdcc6.ucsd.edu> Sender: daemon@ektools (The Devil Himself) Reply-To: pajerek@isctsse.UUCP (Don Pajerek) Organization: Eastman Kodak Telecommunication Services, Rochester, N.Y. 14650 Lines: 26 In article <5850@sdcc6.ucsd.edu> bruno@sdcc10.ucsd.edu (Bruce W. Mohler) writes: >I'm trying to print out a series of characters at an >absolute address (up in the F000:xxxx ROM) from inside >of an MS C 5.1 program. > >This doesn't work for me: > > char far *machine_id = (0xFFFFE); /* F000:FFFE */ > > >Thanks, in advance! > >Bruce W. Mohler Try char far *machine_id = *(char far *)0xF000FFFEL; - djp f i l l e r