Changes between Version 33 and Version 34 of ToolsCourseTp7


Ignore:
Timestamp:
May 10, 2007, 3:21:51 PM (18 years ago)
Author:
anne
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ToolsCourseTp7

    v33 v34  
    4444Pour réaliser votre placement des opérateurs, vous disposez des fonctions de STRATUS
    4545suivantes :
    46  *  !Place()
     46 *   Place()
    4747 *  !PlaceRight(), !PlaceTop(), !PlaceLeft(), !PlaceBottom()
    4848 *  !SetRefIns()
     
    5656class circuit ( Model ):
    5757...
    58 def Layout ( self ):
    59 Place ( self.instance_nand2_4bits, NOSYM, XY ( 0, 0 ) )
    60 PlaceRight ( self.instance_or2_4bits, NOSYM )
    61 PlaceRight ( self.instance_add2_4bits, NOSYM )
     58  def Layout ( self ):
     59    Place ( self.instance_nand2_4bits, NOSYM, XY ( 0, 0 ) )
     60    PlaceRight ( self.instance_or2_4bits, NOSYM )
     61    PlaceRight ( self.instance_add2_4bits, NOSYM )
    6262}}}
    6363Ensuite pour le fichier test_circuit.py, il faut rajouter l'appel à la méthode Layout :