Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3주차 과제] StopWatch & FND #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

[3주차 과제] StopWatch & FND #11

wants to merge 1 commit into from

Conversation

ParkHyeon89
Copy link
Collaborator

Stopwatch 의 i_Record를 추가하여 State 내 RECORD 상태를 추가하는 것으로 과제를 수행하고자 하였으나,
StopWatch 내 74, 75, 76 번 줄 내
": syntax error, unexpected '=', expecting IDENTIFIER or TYPE_IDENTIFIER가 발생하였는데 원인을 찾지 못 함.
1105 피드백 중 State 내 RECORD 상태를 추가하는 것이 아닌 PUASE와 WORK 상태에서 버튼 값을 받으면 기록이 되는 방향을 제시함에 따라 새로 시도해 볼 예정이다.

FND는 기존의 FND에서 특이한 변경점은 없다.

Copy link
Collaborator

@yuyu0830 yuyu0830 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

아래 내용들을 토대로 조금만 더 해봐요!

reg [3:0] c_Sec0, n_Sec0;
reg [3:0] c_Sec2, n_Sec2;
reg [3:0] c_Sec1, n_Sec1;
reg [3:0] c_Sec3; //, n_Sec3;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

c_ 레지스터는 Current 현재값을 저장하고, n_ 레지스터는 Next 다음 값을 저장합니다. c_가 있으면 n_가 세트로 따라붙어야해요!
Record 버튼이 눌렸다면 c_Sec3, c_Sec4, c_Sec5는 c_Sec0, c_Sec1, c_Sec2 의 현재 값을 복사하면 되지만 Record 버튼이 눌리지 않은 경우에 c_Sec3, c_Sec4, c_Sec5 값은 어떤 값이 있나요..?
현재 값을 유지하기 위해서 c_, n_ 두 세트는 항상 필요합니다!

c_fStart = n_fStart ;
c_fStop = n_fStop ;
end
if(i_Record) begin
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

현주도 같은 실수를 했었는데 ㅋㅋㅋ

  1. always@(posedge i_Clk, negedge i_Rst) 의 의미는 i_Clk 신호나 i_Rst 신호에 변동이 있는 경우에 아래 코드를 실행해라! 입니다. 따라서 만약 어떻게든 이런 방식을 사용하려면 always@ 옆에 괄호 안에 posedge i_Record 키워드도 넣어줘야합니다. 그리고 44번 줄에서 if(!i_Rst)고 52번 줄에선else`기 때문에 i_Rst, i_Clk, i_Record 에 대한 if문 분기 처리를 확실히 해야합니다.
  2. i_Rst, i_Clk의 경우 어떤 상황에서든 입력되어야하는 '비동기 입력' 입니다. i_Record의 경우는 시스템이 실행되고있는 동안에만 입력되어야하는 '동기 입력' 입니다. 따라서 아래 always@* 문단에서 다루는게 맞습니다!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants