Changes between Version 33 and Version 34 of ToolsCourseTp7
- Timestamp:
- May 10, 2007, 3:21:51 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ToolsCourseTp7
v33 v34 44 44 Pour réaliser votre placement des opérateurs, vous disposez des fonctions de STRATUS 45 45 suivantes : 46 * !Place()46 * Place() 47 47 * !PlaceRight(), !PlaceTop(), !PlaceLeft(), !PlaceBottom() 48 48 * !SetRefIns() … … 56 56 class circuit ( Model ): 57 57 ... 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 ) 62 62 }}} 63 63 Ensuite pour le fichier test_circuit.py, il faut rajouter l'appel à la méthode Layout :