# /*------------------------------------------------------------\ # | | # | File : README | # | | # | Author : Jacomme Ludovic | # | | # \------------------------------------------------------------*/ This directory contains the VHDL description of combinatorial 8 bits multiplier and the associated stimuli file, and also a configuration file for IO placement (used during the Place and Route step). The Makefile set environment variables properly and run Alliance tools, following each step of the design flow from VHDL up to real layout in a pseudo 0.35 techno. copy the folder "multi8b" to any writable folder of your choice and type: $ make The main targets of the makefile are listed below (following the design flow). # # RTL SYNTHESIS # multi8.vbe : Run the VHDL analyzer (VASY) on the VHDL description (multi8.vhdl) and transform it into a boolean network (multi8.vbe). res_vasy_1.pat : Run the VHDL simulator (ASIMUT) on multi8.vbe using the pattern/stimuli file multi8.pat. This step checks if the multi8.vbe description is working properly. xpat_vasy : Run the graphical waveform viewer (XPAT) on the resulting file res_vasy_1.pat multi8_o.vbe : Run the Boolean network optimizer (BOOM) on the multi8.vbe and factorize/minimize boolean equations, and generate a new description multi8_o.vbe. multi8_o.vst : Run the boolean mapper (BOOG) on the optimized description multi8_o.vbe and using the sxlib standard cell library, map all boolean nodes to an equivalent set of standard cells. xsch_multi8_o : Run the schematic viewer (XSCH) on the structural netlist multi8_o.vst multi8.vst : Run the net optimizer (LOON) on the structural description multi8_o.vst. It inserts buffers on the critical path using the sxlib standard cell library and generates a new structural netlist multi8.vst . xsch_multi8 : Run the schematic viewer (XSCH) on the bufferized netlist multi8.vst . The critical path would be displayed in red color. res_synth_1.pat : Run the VHDL simulator (ASIMUT) on the structural description multi8.vst using the pattern/stimuli file multi8.pat and the behavioral description (.VBE) of each cells of the standard cell library (sxlib). This step checks if the multi8.vst description is still working properly. # # PLACE AND ROUTE # multi8_p.ap : Run the placement tool (OCP) on the structural description multi8.vst. It generates a physical placement file (multi8_p.ap) that would be given to the router (NERO). graal_multi8_p : Launch the physical layout editor (GRAAL) and display the result of the placement tool (multi8_p.ap). multi8.ap : Run the router tool (NERO). Given the structural description multi8.vst, the placement file (multi8_p) and the position of external connectors (multi8.ioc) the router generates a physical view (multi8.ap) where all nets have been routed. graal_multi8 : Launch the physical layout editor (GRAAL) and display the result of the router tool (multi8.ap). # # Netlist / parasitics extraction # multi8_e.al : Run the hierarchical netlist extractor (COUGAR) and extracts the netlist with parasitic information (physical parameters are taken in the techno-035.rds file). This tool generates the extracted netlist multi8_e.al xsch_multi8_e : Run the schematic viewer (XSCH) on the hierarchical extracted netlist (multi8_e.al). multi8_et.al : Run the netlist extractor (COUGAR) and extracts the netlist at the transistor level with parasitics information (multi8_et.al). xsch_multi8_et : Run the schematic viewer (XSCH) on the extracted transistor netlist (multi8_et.al). # # Netlists comparison # lvx.done : Run the gate netlist comparator (LVX) and checks if the extracted netlist is the same as the structural structural netlist. This step checks if the place and route phases are ok. # # Design rule checker # druc.done : Launch the design rule checker on the layout generated by the router (multi8.ap). The design rules are specified in the RDS file (techno-symb.rds). # # Symbolic layout to real layout # multi8.cif : Transforms the symbolic layout in lambda (multi8.ap) in a 0.35u real layout using the tool S2R. It generates a CIF file (multi8.cif). dreal_multi8 : Launch the real layout editor (DREAL) and display the result of S2R (multi8.cif). # # Clean The clean target remove all generated files ...