Create Block Design을 클릭하고 아래와 같은 블럭을 만들었다. 위 블럭을 토대로 코드를 구현하고 싶다면,Create HDL Wrapper를 클릭하면 아래와 같은 기본적인 코드가 자동으로 형성되는 것을 확인할 수 있다.module micro_blaze_hello_wrapper (reset, sys_clock, usb_uart_rxd, usb_uart_txd); input reset; input sys_clock; input usb_uart_rxd; output usb_uart_txd; wire reset; wire sys_clock; wire usb_uart_rxd; wire usb_uart_txd; micro_blaze_hello micro_blaze_..