report 1 on the subject embedded systems that deals with quartus PDF

Title report 1 on the subject embedded systems that deals with quartus
Course Systemy wbudowane
Institution Politechnika Bialostocka
Pages 5
File Size 301.7 KB
File Type PDF
Total Downloads 12
Total Views 142

Summary

report 1 on the subject embedded systems that deals with quartus...


Description

Bialystok University of Technology Faculty of Computer Science

EMBEDDED SYSTEMS FCS-00072

Report

Lab 1:Work scenario with Quartus Prime

Teacher: Adam Klimowicz

Student: Antonio Ortiz Navarro

Task 1 Verilog code: module task1(input cin, a, b, output s, cout); assign s = a^b^cin; assign cout = a&b|(a^b)&cin; endmodule

Simulation:

We have implemented one bit ussing some aritmethic operations on computer language with symbol(&,+,*,...).

Task 2 Verilog code: module task2 (a,b,cin,s,cout); input a,b,cin; output s,cout; and(cout_0,a,b); xor(s_0,a,b); and(cout_1,s_0,cin); or(cout,cout_1,cout_0); xor(s,cin,s_0); endmodule

I have used Verilog primitives for this exercises.

Task 3: Verilog code: module task3 (a,b,cin,s,cout); input a,b,cin; output s,cout; assign {cout , s} = a + b + cin; endmodule

I used some aritmethic operations for this exercise.

Task 4

I have not been able to solve the problem....


Similar Free PDFs