Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

A ROM CTL MODEL FOR SNPS, IS IT RIGHT?

Status
Not open for further replies.

HolySaint

Full Member level 3
Joined
Aug 31, 2008
Messages
159
Helped
6
Reputation
14
Reaction score
3
Trophy points
1,298
Location
Mars
Activity points
2,109
Code:
[color=green]STIL 1.0 {
	CTL P2001.10;
	Design P2001.10;
}
Header {
	//Date "";
	//Source ""
	//History {}
}
Variables {
	// Define Constaints here using IntegerConstant syntaxi
}
Signals {
	"Q"[4..0] Out;
	"CLK" In;
	"CEN" In;
	"A"[11..0] In;
}
Environment "rom_test" {
 // snps_rom4rc
	CTL Mission_mode {
		TestMode Normal;
		Family SNPS_memory;
	}
	CTL BIST_mode {
		TestMode InternalTest;
		Internal {
			"Q"[4..0] {DataType MemoryData ; }
			"CLK" {DataType MasterClock { ActiveState ForceUp ; } }
			"CEN" {DataType CoreSelect { ActiveState ForceDown ;} }
			"A"[11..0] {DataType MemoryAddress ; }
			}
		Relation { 
			Port'"Q"[4..0] + "CLK" + "CEN" + "A"[11..0] '0;
		 }
	}
}[/color]
 

I don't have my CTL book/spec with me, but try posting over at DFT Forum. There's people over there that probably use this more often...

for DFT talk/info go to:
DFT Digest
DFT Forum
 

Y cant me open DFT Forum?
Is my network error?
But i can open DFT Digest.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top