aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs
Commit message (Expand)AuthorAgeFilesLines
* Add RAM32X6SDP and RAM64X3SDP modesEddie Hung2019-12-122-8/+120
* Fix RAM64M model to have 6 bit address busEddie Hung2019-12-121-4/+4
* Add memory rules for RAM16X1D, RAM32M, RAM64MEddie Hung2019-12-122-0/+168
* abc9_map.v: fix Xilinx LUTRAMEddie Hung2019-12-121-6/+6
* Fix bitwidth mismatch; suppresses iverilog warningEddie Hung2019-12-111-4/+4
* Merge pull request #1564 from ZirconiumX/intel_housekeepingDavid Shah2019-12-118-6/+6
|\
| * synth_intel: a10gx -> arria10gxDan Ravensloft2019-12-105-4/+4
| * synth_intel: cyclone10 -> cyclone10lpDan Ravensloft2019-12-105-4/+4
* | Merge pull request #1545 from YosysHQ/eddie/ice40_wrapcarry_attrEddie Hung2019-12-094-20/+22
|\ \ | |/ |/|
| * ice40_opt to restore attributes/name when unwrappingEddie Hung2019-12-091-0/+15
| * Sensitive to direct inst of $__ICE40_CARRY_WRAPPER; recreate SB_LUT4Eddie Hung2019-12-091-1/+1
| * ice40_wrapcarry to really preserve attributes via -unwrap optionEddie Hung2019-12-092-19/+1
| * $__ICE40_CARRY_WRAPPER to use _TECHMAP_REPLACE_ for SB_CARRY to preserveEddie Hung2019-12-031-1/+1
| * ice40_opt to ignore (* keep *) -ed cellsEddie Hung2019-12-031-0/+5
* | -22988/+30572
| |\ \
| * | | fix wide lutsPepijn de Vos2019-11-061-12/+12
| * | | add IOBUFPepijn de Vos2019-10-282-1/+10
| * | | add tristate buffer and testPepijn de Vos2019-10-282-2/+8
| * | | More formattingPepijn de Vos2019-10-281-55/+49
| * | | really really fix formatting maybePepijn de Vos2019-10-281-41/+41
| * | | undo formatting fuckupPepijn de Vos2019-10-281-25/+25
| * | | add wide lutsPepijn de Vos2019-10-283-36/+119
| * | | add 32-bit BRAM and byte-enablesPepijn de Vos2019-10-282-4/+25
| * | | ALU sim tweaksPepijn de Vos2019-10-241-11/+11
| * | | add a few more missing dffPepijn de Vos2019-10-211-7/+16
| * | | add negedge DFFPepijn de Vos2019-10-212-15/+139
| * | | use ADDSUB ALU mode to remove invertersPepijn de Vos2019-10-212-7/+77
| * | | Merge branch 'master' of https://github.com/YosysHQ/yosys into gowinPepijn de Vos2019-10-2158-1315/+24105
| |\ \ \
| * | | | remove duplicate DFFRPepijn de Vos2019-10-161-10/+0
| * | | | Revert "add MUX support"Pepijn de Vos2019-09-063-17/+0
| * | | | fix BRAM width and initPepijn de Vos2019-09-062-12/+28
| * | | | add more DFF to sim libPepijn de Vos2019-09-062-6/+111
| * | | | WIP aditional DFF primitivesPepijn de Vos2019-09-052-1/+48
lass="nv">False); -- Put all design_units of FILE into the work library, by calling -- Add_Design_Unit_Into_Library. -- FILE is updated since it may changed (FILE is never put in the library, -- a new one is created). procedure Add_Design_File_Into_Library (File : in out Iir_Design_File); -- Return the latest architecture analysed for entity ENTITY. function Get_Latest_Architecture (Entity: Iir_Entity_Declaration) return Iir_Architecture_Body; -- Return the design unit (stubed if not loaded) from UNIT. -- UNIT may be either a design unit, in this case UNIT is returned, -- or a selected name, in this case the prefix is a library name and -- the suffix a primary design unit name, -- or an entity_aspect_entity to designate an architectrure. -- Return null_iir if the design unit is not found. function Find_Design_Unit (Unit : Iir) return Iir_Design_Unit; -- Find the secondary unit of PRIMARY. -- If PRIMARY is a package declaration, returns the package body, -- If PRIMARY is an entity declaration, returns the architecture NAME. -- Return NULL_IIR if not found. function Find_Secondary_Unit (Primary: Iir_Design_Unit; Name: Name_Id) return Iir_Design_Unit; -- Search design file NAME in library LIB. This is not very efficient as -- this is a simple linear search. NAME must correspond exactely to the -- design file name. function Find_Design_File (Lib : Iir_Library_Declaration; Name : Name_Id) return Iir; -- Find an entity whose name is NAME in any library. -- If there is no such entity, return NULL_IIR. -- If there are severals entities, return NULL_IIR; function Find_Entity_For_Component (Name: Name_Id) return Iir_Design_Unit; -- Decode '--work=NAME' command line option and return the identifier -- for the library. -- To effectively use the library, assign Work_Library_Name and load the -- library by calling Load_Work_Library. -- Return Null_Identifier if NAME is not a valid name. function Decode_Work_Option (Opt : String) return Name_Id; -- Get the chain of libraries. Can be used only to read (it musn't be -- modified). function Get_Libraries_Chain return Iir_Library_Declaration; end Libraries;