Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
SDC Study.com CS 306 Computer Architecture
#1
I've been putting this course off for several months because it's not needed until the beginning of June. I've viewed the project portion before and after skipping through the chapters don't feel like the assignment has been designed for CS 306 Computer Architecture since the information needed to complete it is not taught via the course material. 

I've read more than a few complaints about this detail via this forum and since, I know that Study.com employees have been active here, I wonder why it hasn't been updated to reflect course knowledge. Nevertheless, I want to complete the assignment before I start a new subscription month as I need to complete 3 exams and don't want to run out of time. 

Could anyone offer notes or tips?
Reply
#2
(04-12-2021, 07:21 PM)vanglorious Wrote: I've been putting this course off for several months because it's not needed until the beginning of June. I've viewed the project portion before and after skipping through the chapters don't feel like the assignment has been designed for CS 306 Computer Architecture since the information needed to complete it is not taught via the course material. 

I've read more than a few complaints about this detail via this forum and since, I know that Study.com employees have been active here, I wonder why it hasn't been updated to reflect course knowledge. Nevertheless, I want to complete the assignment before I start a new subscription month as I need to complete 3 exams and don't want to run out of time. 

Could anyone offer notes or tips?
Youtube and github. If I didn't have something to reference I would not have pass. Your going to have the learn the in and out of logisim if you want to pass.
Reply
#3
(04-12-2021, 07:21 PM)vanglorious Wrote: I've been putting this course off for several months because it's not needed until the beginning of June. I've viewed the project portion before and after skipping through the chapters don't feel like the assignment has been designed for CS 306 Computer Architecture since the information needed to complete it is not taught via the course material. 

I've read more than a few complaints about this detail via this forum and since, I know that Study.com employees have been active here, I wonder why it hasn't been updated to reflect course knowledge. Nevertheless, I want to complete the assignment before I start a new subscription month as I need to complete 3 exams and don't want to run out of time. 

Could anyone offer notes or tips?


Here are some sources to help you get going.  Remember that you can resubmit the assignment for a better grade.  


Phase One:

https://www.eeweb.com/building-a-4-bit-c...ction-set/
This site has an instruction set that might give you some ideas for instructions to suggest in your project.

https://www.instructables.com/How-to-Bui...-Computer/
Go to "Step 14: Microprogramming" for an explanation of what some opcodes do.  Other parts of the article could be useful for the rest of your project.


Phase Two:

I don't think it matters which opcode you assign to which operation.  Do make sure that your ALU matches your opcode table.  Include in your opcode table the 9 instructions the instructions suggest in Phase One and the 5 you suggested.

https://www.researchgate.net/publication...onCoverPdf

On page 134 is a diagram labeled "Fig. 3 A Simple ALU Schematic Diagram on Logisim".  I used this method for my ALU.  Don't forget to cite your sources.  

Ichsan, Mochammad Hannats Hanafi & Kurniawan, Wijaya. (2017). Design and implementation 8 bit CPU architecture on Logisim for undergraduate learning support. 132-137. 10.1109/SIET.2017.8304123.

Or you could use Study.com's method in Chapter 5 Lesson 10 "Building an ALU Using Logisim".  https://study.com/academy/lesson/buildin...gisim.html
This page also details how to build 4 bit Adder/Subtractor, 4 bit AND, and 4 bit OR circuits.  These can be expanded to 8 bit circuits for this project.  Study.com is especially easy to cite because they have a handy "Cite this lesson" button under the lesson transcript.


Phase Four:

https://www.tutorialspoint.com/assembly_..._guide.htm
This page has some examples of assembly language statements, such as INC, MOV, and ADD:

"
INC COUNT          ; Increment the memory variable COUNT

MOV TOTAL, 48    ; Transfer the value 48 in the
                               ; memory variable TOTAL
 
ADD AH, BH          ; Add the content of the
                               ; BH register into the AH register
 
AND MASK1, 128   ; Perform AND operation on the
                                ; variable MASK1 and 128
 
ADD MARKS, 10     ; Add 10 to the variable MARKS

MOV AL, 10             ; Transfer the value 10 to the AL register
"
[-] The following 4 users Like ConqueringCollege's post:
  • BadBradsBBQ, bluebooger, jsd, vanglorious
Reply
#4
(04-13-2021, 12:05 PM)ConqueringCollege Wrote:
(04-12-2021, 07:21 PM)vanglorious Wrote: I've been putting this course off for several months because it's not needed until the beginning of June. I've viewed the project portion before and after skipping through the chapters don't feel like the assignment has been designed for CS 306 Computer Architecture since the information needed to complete it is not taught via the course material. 

I've read more than a few complaints about this detail via this forum and since, I know that Study.com employees have been active here, I wonder why it hasn't been updated to reflect course knowledge. Nevertheless, I want to complete the assignment before I start a new subscription month as I need to complete 3 exams and don't want to run out of time. 

Could anyone offer notes or tips?


Here are some sources to help you get going.  Remember that you can resubmit the assignment for a better grade.  


Phase One:

https://www.eeweb.com/building-a-4-bit-c...ction-set/
This site has an instruction set that might give you some ideas for instructions to suggest in your project.

https://www.instructables.com/How-to-Bui...-Computer/
Go to "Step 14: Microprogramming" for an explanation of what some opcodes do.  Other parts of the article could be useful for the rest of your project.


Phase Two:

I don't think it matters which opcode you assign to which operation.  Do make sure that your ALU matches your opcode table.  Include in your opcode table the 9 instructions the instructions suggest in Phase One and the 5 you suggested.

https://www.researchgate.net/publication...onCoverPdf

On page 134 is a diagram labeled "Fig. 3 A Simple ALU Schematic Diagram on Logisim".  I used this method for my ALU.  Don't forget to cite your sources.  

Ichsan, Mochammad Hannats Hanafi & Kurniawan, Wijaya. (2017). Design and implementation 8 bit CPU architecture on Logisim for undergraduate learning support. 132-137. 10.1109/SIET.2017.8304123.

Or you could use Study.com's method in Chapter 5 Lesson 10 "Building an ALU Using Logisim".  https://study.com/academy/lesson/buildin...gisim.html
This page also details how to build 4 bit Adder/Subtractor, 4 bit AND, and 4 bit OR circuits.  These can be expanded to 8 bit circuits for this project.  Study.com is especially easy to cite because they have a handy "Cite this lesson" button under the lesson transcript.


Phase Four:

https://www.tutorialspoint.com/assembly_..._guide.htm
This page has some examples of assembly language statements, such as INC, MOV, and ADD:

"
INC COUNT          ; Increment the memory variable COUNT

MOV TOTAL, 48    ; Transfer the value 48 in the
                               ; memory variable TOTAL
 
ADD AH, BH          ; Add the content of the
                               ; BH register into the AH register
 
AND MASK1, 128   ; Perform AND operation on the
                                ; variable MASK1 and 128
 
ADD MARKS, 10     ; Add 10 to the variable MARKS

MOV AL, 10             ; Transfer the value 10 to the AL register
"

ConqueringCollege, thanks for this!  Smile
Reply
#5
Amazing, thanks for this, anyone got any clue how to do phase three? I'm struggling..!
Completed TESU BA in CS & Math

Reply


Possibly Related Threads...
Thread Author Replies Views Last Post
  Study.com English Comp II Info MrBossmanJr 34 12,501 Yesterday, 02:31 AM
Last Post: pluggingalong
  TRANSFERABLE College Credit by Exam, Portfolio PLA, Ind Study - Esp STEM RKanarek 7 730 07-25-2025, 03:43 AM
Last Post: RKanarek
  Public Speaking - Study.com or Sophia VanillaBean 2 182 07-23-2025, 03:20 AM
Last Post: bjcheung77
  Study.com - coupon codes & pause or cancel subscription? VanillaBean 4 245 07-21-2025, 05:18 PM
Last Post: VanillaBean
  Study.com upper level courses? VanillaBean 4 225 07-21-2025, 04:21 PM
Last Post: Jonathan Whatley
  STUDY.COM Zizi 0 128 07-21-2025, 03:08 PM
Last Post: Zizi
  study.com grading channaleah 19 8,999 07-21-2025, 10:11 AM
Last Post: Harrynguyen
Question Study.com experience with the new changes? Ares 16 1,636 07-19-2025, 06:47 PM
Last Post: bradonomics
  Study.com MedicOne 4 475 07-07-2025, 07:44 PM
Last Post: MedicOne
  New Study.com Courses Intro to Web Development, Intro to Project Managment Jonathan Whatley 3 704 07-06-2025, 11:35 AM
Last Post: jsh1138

Forum Jump:


Users browsing this thread: 1 Guest(s)