Re: 6702 chip

From: Kajtar Zsolt <soci_at_c64.rulez.org>
Date: Fri, 11 May 2012 19:31:00 +0200 (CEST)
Message-ID: <Pine.LNX.4.64.1205111911330.26077@localhost>
On Fri, 11 May 2012, Rhialto wrote:

> On Fri 11 May 2012 at 09:58:58 +0200, Rhialto wrote:
>> Hopefully it is awaiting moderator approval so
>> they will show up eventually.
>
> For the moment I have pasted my lists into pastebin:
>
> http://pastebin.com/c2JNM5DA
> http://pastebin.com/mBjqdb8k

Haha, simple divider.

Bit7: divide by 2
Bit6: divide by 5
Bit5: 0
Bit4: divide by 1
Bit3: 0
Bit2: divide by 7
Bit1: divide by 3
Bit0: divide by 6

The sequence of "c2JNM5DA" can be generated by this python script.

#!/usr/bin/python

for a in range(211,2259):
     print (int((a/2) & 1)*128+int((a/5) & 1)*64+int((a/1) & 
1)*16+int((a/7) & 1)*4+int((a/3) & 1)*2+int((a/6) & 1)*1) ^ 87

                                                    -soci-

       Message was sent through the cbm-hackers mailing list
Received on 2012-05-11 18:00:10

Archive generated by hypermail 2.2.0.