gh*: add Korean translation (#14300)

This commit is contained in:
HoJeong Im
2024-10-21 13:58:15 +09:00
committed by GitHub
parent 46c11730bf
commit 16d992e616
5 changed files with 150 additions and 0 deletions

28
pages.ko/common/ghdl.md Normal file
View File

@@ -0,0 +1,28 @@
# ghdl
> VHDL 언어용 오픈 소스 시뮬레이터.
> 더 많은 정보: <https://ghdl.github.io/ghdl/>.
- VHDL 소스 파일을 분석하고 개체 파일을 생성:
`ghdl -a {{파일이름.vhdl}}`
- 설계를 정교화 (여기서 `design`은 구성 단위, 엔터티 단위 또는 아키텍처 단위의 이름):
`ghdl -e {{디자인}}`
- 정교한 디자인 실행:
`ghdl -r {{디자인}}`
- 정교한 설계를 실행하고 출력을 파형 파일로 덤프:
`ghdl -r {{디자인}} --wave={{output.ghw}}`
- VHDL 소스 파일의 구문을 확인:
`ghdl -s {{파일이름.vhdl}}`
- 도움말 표시:
`ghdl --help`