On 2005-03-31, Cesar Andres Roldan Garcia <[EMAIL PROTECTED]> wrote:
How can I control an ALU from a PC using Python?
The ALU is buried pretty deep in the CPU. The ALU is part of what is actually executing the instructions that _are_ Python.
Maybe:
>>> from __builtin__ import int as ALU >>> ALU.__add__(3,4) 7
Sorry ;-)
Michael
-- http://mail.python.org/mailman/listinfo/python-list