home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!ogicse!orstcs!orstcs!usenetusenet
- From: frederm@prism.CS.ORST.EDU (Michael Frederick)
- Newsgroups: comp.lang.pascal
- Subject: OOPs!
- Message-ID: <1992Jul30.091827.11160@CS.ORST.EDU>
- Date: 30 Jul 92 09:18:27 GMT
- Article-I.D.: CS.1992Jul30.091827.11160
- Sender: usenet@CS.ORST.EDU
- Organization: Oregon State University, Computer Science Dept.
- Lines: 13
- Nntp-Posting-Host: prism.cs.orst.edu
-
- In my last article I wrote
-
- if p^ & 1 = 1 then left shift pushed
-
- I used 'C's bitwise and there... It should be
-
- if p^ and 1 = 1 then ....
- if p^ and 2 = 2 then .....
-
-
- sorry.
-
- Mike
-