Path: utzoo!attcan!uunet!lll-winken!ames!mailrus!tut.cis.ohio-state.edu!ucbvax!BROWNVM.BITNET!DANFUZZ From: DANFUZZ@BROWNVM.BITNET (Dan Bornstein) Newsgroups: comp.sys.apple Subject: Border color Message-ID: <8903171623.aa16204@SMOKE.BRL.MIL> Date: 17 Mar 89 21:21:36 GMT Sender: daemon@ucbvax.BERKELEY.EDU Organization: The Internet Lines: 17 On the IIgs, the border color is stored in the LOW-NIBBLE of $C034. When you set it you should be sure not to disturb the top nibble; do something like this (assuming native-mode) LDA $C034 AND #$FFF0 ORA #$000x <---- x is the color # you want STA $C034 (8-bit mode) LDA $C034 AND #$F0 ORA #$0x STA $C034 -dan