◄Up► ◄Contents► ◄Index► ◄Back► ─────C/C++ Language───────────────────────────────────────────────────────── Form of <base>: void A based pointer declared this way acts as an offset into any segment. It can be combined with any segment value using the :> operator. For example: __segment segvar = 0xB800; // specify a segment value int __based(void) *bp = 4; // offset of 4 // set contents of location 0xB804 *(segvar:>bp) = (0x07 << 8) + 'A'; -♦-