Date: Thu, 30 Jan 1997 18:45:19 +0000 ( ) From: Gurunandan R Bhat To: mharris AT blackwidow DOT saultc DOT on DOT ca Cc: Benjamin D Chambers , djgpp AT delorie DOT com Subject: Re: fixed point math: NEED HELP QUICK! In-Reply-To: Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Thu, 30 Jan 1997 mharris AT blackwidow DOT saultc DOT on DOT ca wrote: > > other_stuff = stuff >> 8; /* stuff * 8 */ i think, if you want stuff*8 you must shift *left* by three like so? other_stuff = stuff << 3