아니요, 스크립트는 메모리 핀 이름을 자동으로 찾지 않습니다.
상단 디자인의 메모리 핀 이름이 "mem_"와 다른 경우 핀 할당 tcl 파일에서 핀 이름의 접두사를 변경해야 합니다.
예를 들어 최상위 디자인의 메모리 인터페이스 핀 이름에 접두사 top_mem_*가 있는 경우 <instance_name>_pin_assignment.tcl 스크립트에서 다음 줄을 변경해야 합니다.
보낸 사람
if {![ info exists pin_prefix]} {set pin_prefix "mem_"}
받는 사람
if {![ info exists pin_prefix]} {set pin_prefix "top_mem_"}
SOPC 빌더에서 컨트롤러를 생성한 경우 <instance_name>_pin_assignment.tcl 스크립트에서 아래 줄을 변경해야 합니다.
보낸 사람
if {![ info exists sopc_mode]} {set sopc_mode YES}
받는 사람
if {![ info exists sopc_mode]} {set sopc_mode NO}