1. Trang chủ
  2. » Luận Văn - Báo Cáo

Thiết kế logic số bằng ngôn ngữ vhdl

48 24 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Tiêu đề Thiết Kế Logic Số Bằng Ngôn Ngữ Vhdl
Tác giả Nguyễn Đức Thắng, Nguyễn Tiến Dũng
Người hướng dẫn Trần Thị Thúy Hà
Trường học Học Viện Công Nghệ Bưu Chính Viễn Thông
Chuyên ngành Thiết Kế Logic Số
Thể loại Báo Cáo Bài Tập Lớn
Năm xuất bản 2023
Thành phố Hà Nội
Định dạng
Số trang 48
Dung lượng 353,01 KB

Cấu trúc

  • Bài 1:.........................................................................................................2 (0)
    • 1. Cơ sở lý thuyết (5)
  • Bài 2:.......................................................................................................22 (0)
    • 1. Cơ sở lí thuyết (20)
    • 2. Áp dụng cho code VHDL (20)
      • 2.1. Code chương trình (20)
      • 2.2. Code testbench (31)
  • Bài 3:........................................................................................................31 (0)
  • Bài 4:........................................................................................................39 (0)
    • 2.2. Code cho Trigger JK (45)
    • 2.3. Code testbench (0)

Nội dung

thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số thiết kế logic số

Cơ sở lý thuyết

Ở đây ,em tạo mã và giải mã hamming chẵn (7,4) như sau : Đầu tiên , với mạch tạo mã từ 4 bit D1,D2,D3,D4 , sẽ tạo ra mã hamming chẵn hamming

7 bit D4D3D2P2D1P1P0 thỏa mãn :P0XOR D2 XOR D4, P1=P1 XOR D1 XOR D3 XOR D4 ,P2 =P2 XOR D2 XOR D3 XOR D4

Trong mạch giải mã, việc kiểm tra lỗi bit đầu vào 7 bit s2s1s0 được thực hiện như sau: nếu s2s1s0 bằng 0, mã không có lỗi Ngược lại, nếu s2s1s0 bằng 1, mã sẽ có lỗi ở vị trí thứ nhất Khi s2s1s0 bằng 0, lỗi sẽ xuất hiện ở vị trí thứ hai, và nếu s2s1s0 bằng 1, lỗi sẽ xảy ra ở vị trí thứ ba Cuối cùng, khi s2s1s0 bằng 0, mã có lỗi ở vị trí thứ tư.

4 , s2s1s0 1 thì mã có lỗi ở vi trí thứ 5 , s2s1s0 0 => mã có lỗi ở vị trí thứ 6 , s2s1s0 1, mã có lỗi ở vị trí thứ 7

Here is the VHDL code and corresponding testbench for the Hamming (7,4) code generator, utilizing the IEEE library for standard logic and arithmetic operations The entity is defined as "Hamming," which serves as the foundation for implementing error correction in digital communication systems.

Port ( D : in STD_LOGIC_VECTOR(4 downto 1);

H : out STD_LOGIC_VECTOR(7 downto 1)); end Hamming; process(D) variable p0, p1, p2: STD_LOGIC; begin p0 := D(1) XOR D(2) XOR D(4); p1 := D(1) XOR D(3) XOR D(4); p2 := D(2) XOR D(3) XOR D(4);

The provided VHDL code defines a testbench entity with a behavioral architecture It includes a signal declaration for a 4-bit standard logic vector 'D' and an 8-bit standard logic vector 'H' The process block specifies a condition where 'H' is assigned based on the values of 'D' and other signals The design utilizes the IEEE standard for unsigned logic operations, ensuring compatibility and accuracy in digital circuit simulations.

To implement signal processing from D to H using Hamming code, begin by encoding the input signal through the entity work.Hamming port map (D => D, H => H) In the process, iterate through a loop from 0 to 15, creating a case structure for each value of i, starting with when i is 0.

D

The provided VHDL code defines a Testbench entity with an architecture that includes signals M and K, both represented as 7-bit standard logic vectors The process within the Testbench iterates through a loop from 0 to 127, utilizing a case statement to handle specific conditions, particularly checking if K is not equal to the values of H from 1 to 7 The code utilizes the IEEE library for standard logic operations, ensuring compatibility and functionality in digital design simulations.

M

Ngày đăng: 14/11/2023, 22:22

w