Skip to content

Commit

Permalink
ЛР12. Исправление опечатки в типе
Browse files Browse the repository at this point in the history
  • Loading branch information
HepoH3 committed Nov 28, 2023
1 parent 746fb27 commit 0c650e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Labs/12. Peripheral units/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ module sw_sb_ctrl(
input logic [31:0] write_data_i, // не используется, добавлен для
// совместимости с системной шиной
output logic [31:0] read_data_o,
output logic ready_o,
output logic ready_o,
/*
Часть интерфейса модуля, отвечающая за отправку запросов на прерывание
Expand Down Expand Up @@ -271,12 +271,12 @@ module led_sb_ctrl(
input logic [31:0] addr_i,
input logic [31:0] write_data_i,
output logic [31:0] read_data_o,
output logic ready_o,
output logic ready_o,
/*
Часть интерфейса модуля, отвечающая за подключение к периферии
*/
output logic [15:0] led_o
output logic [15:0] led_o
);
logic [15:0] led_val;
Expand Down Expand Up @@ -342,7 +342,7 @@ module ps2_sb_ctrl(
*/
output logic interrupt_request_o,
input lotic interrupt_return_i,
input logic interrupt_return_i,
/*
Часть интерфейса модуля, отвечающая за подключение к модулю,
Expand Down

0 comments on commit 0c650e9

Please sign in to comment.