yosys/techlibs/analogdevices/lutrams.txt

38 lines
461 B
Plaintext
Raw Normal View History

2025-09-23 12:08:17 +02:00
# Single-port RAMs.
ram distributed $__ANALOGDEVICES_LUTRAM_SP_ {
2025-10-09 05:38:49 +02:00
cost 1;
2025-09-23 12:08:17 +02:00
option "ABITS" 5 {
abits 5;
}
option "ABITS" 6 {
abits 6;
}
2025-10-09 05:38:49 +02:00
width 1;
2025-09-23 12:08:17 +02:00
init no_undef;
prune_rom;
port arsw "RW" {
clock posedge;
}
}
# Dual-port RAMs.
ram distributed $__ANALOGDEVICES_LUTRAM_DP_ {
2025-10-09 05:38:49 +02:00
cost 1;
2025-09-23 12:08:17 +02:00
option "ABITS" 5 {
abits 5;
}
option "ABITS" 6 {
abits 6;
}
2025-10-09 05:38:49 +02:00
width 1;
2025-09-23 12:08:17 +02:00
init no_undef;
prune_rom;
port ar "R" {
}
2025-10-09 05:38:49 +02:00
port arsw "RW" {
2025-09-23 12:08:17 +02:00
clock posedge;
}
}