timescale timescale은 컴파일러 지시자 중 하나로서, 컴파일러 지시자는 backward quite(`)으로 시작한다 timescale은 합성과 상관없이, 회로를 테스트하기 위한 시뮬레이션에만 영향을 준다. timescale은 시뮬레이션시 기본적인 시간 단위를 결정하는데, 아래와 같이 설정하는경우, 기본 시뮬레이션 단위인 time unit은 1 ns이고, time precision은 1 ps 가 된다. // usage: `timescale [time unit]/[time precision] `timescale 1ns/1ps timescale 관련하여 몇가지 유용한 시스템 함수들을 알아보면, 시스템 함수인 $printtimescale은 time unit과 time precision을 출력할 수..