Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
study.com computer architecture assignment help
#1
Hello! I am on my last study.com course and I am having a little bit of difficulty with the final assignment. I have completed 3 outta of 4 parts of the project but the last phase confuses me alot and I am completely lost. I did good on the homework but not as good on the final and I really prefer not to spend $70 to raise my score. I just need a solid project score. But the project is confusing me. The part in particular is Phase Four
In order to be able to write assembly language for the CPU we need to add to instructions (without implementation):

  • branch to an address (name it JMP)

  • conditional branch to an address (name it CJMP and suppose that the jump takes place if the comparison operation result is 'equals')
Now, write the following programs using the assembly language you designed in the previous phases of the project as well as these two branching additional instructions:

  • Write a program that adds two operands.

  • Write a program that adds operands until the new value to be added is 0. You do not need to implement the input operations to modify the contents of the registers. Just assume that by the end of each iteration, the register content is modified.

  • Write a program that increments by 2 the content of a register 10 times.

  • Write a program that shifts the content of a register until the least significant bit is 0. Think of a way to stop shifting if the content of the register is 11111111 and add it to your program.
Please record your programs in the same Word doc and label them under the section 'Phase Four.'

I am not looking for answer or to cheat. I am just wondering if anyone knows a youtube link that explains or shows this last part. I have look at the study.com lessons and they do not seem to explain this. Any help would be greatly appreciated. 
Reply
#2
Yes, Study.com does not teach how to write assembly code. I learned how to write instructions here:

http://skilldrick.github.io/easy6502/

It teaches how to program Snake in assembly. You don't need to finish to complete the assignment. If you have questions afterwards, PM me.
OnlineDegree
Intro to Marketing and Strategy ($9) | Intro to Microeconomics ($9)

Study
Intro to Managerial Accounting ($70) | Advanced Accounting ($70) | Managerial Accounting ($80) | Intermediate Accounting 2 ($90) | Intermediate Accounting I ($90) | Cybersecurity Policies & Management ($80) | Management Information Systems ($80) | Data Structures & Algorithms ($80) | Intro to Programming ($70) | Computer Architecture ($70) | Calculus ($80) Database Management ($80)
Systems Analysis & Design ($70) | Discrete Math ($80) | Intro to Operation Systems ($80)

Saylor.org
Intro to Computer Science I ($25)
[-] The following 1 user Likes udi's post:
  • Pikachu
Reply
#3
(04-25-2020, 04:43 PM)udi Wrote: Yes, Study.com does not teach how to write assembly code. I learned how to write instructions here:

http://skilldrick.github.io/easy6502/

It teaches how to program Snake in assembly. You don't need to finish to complete the assignment. If you have questions afterwards, PM me.

Thanks so much hopefully it be enough thank you for the help
Reply
#4
(04-25-2020, 03:27 PM)maxxor6868 Wrote: Hello! I am on my last study.com course and I am having a little bit of difficulty with the final assignment. I have completed 3 outta of 4 parts of the project but the last phase confuses me alot and I am completely lost. I did good on the homework but not as good on the final and I really prefer not to spend $70 to raise my score. I just need a solid project score. But the project is confusing me. The part in particular is Phase Four
In order to be able to write assembly language for the CPU we need to add to instructions (without implementation):
  • branch to an address (name it JMP)

  • conditional branch to an address (name it CJMP and suppose that the jump takes place if the comparison operation result is 'equals')
Now, write the following programs using the assembly language you designed in the previous phases of the project as well as these two branching additional instructions:
  • Write a program that adds two operands.

  • Write a program that adds operands until the new value to be added is 0. You do not need to implement the input operations to modify the contents of the registers. Just assume that by the end of each iteration, the register content is modified.

  • Write a program that increments by 2 the content of a register 10 times.

  • Write a program that shifts the content of a register until the least significant bit is 0. Think of a way to stop shifting if the content of the register is 11111111 and add it to your program.
Please record your programs in the same Word doc and label them under the section 'Phase Four.'

I am not looking for answer or to cheat. I am just wondering if anyone knows a youtube link that explains or shows this last part. I have look at the study.com lessons and they do not seem to explain this. Any help would be greatly appreciated. 
Were you able to build the ALU and CPU based on the content of the lessons?
Reply
#5
(04-25-2020, 05:05 PM)terryd5150 Wrote:
(04-25-2020, 03:27 PM)maxxor6868 Wrote: Hello! I am on my last study.com course and I am having a little bit of difficulty with the final assignment. I have completed 3 outta of 4 parts of the project but the last phase confuses me alot and I am completely lost. I did good on the homework but not as good on the final and I really prefer not to spend $70 to raise my score. I just need a solid project score. But the project is confusing me. The part in particular is Phase Four
In order to be able to write assembly language for the CPU we need to add to instructions (without implementation):
  • branch to an address (name it JMP)

  • conditional branch to an address (name it CJMP and suppose that the jump takes place if the comparison operation result is 'equals')
Now, write the following programs using the assembly language you designed in the previous phases of the project as well as these two branching additional instructions:
  • Write a program that adds two operands.

  • Write a program that adds operands until the new value to be added is 0. You do not need to implement the input operations to modify the contents of the registers. Just assume that by the end of each iteration, the register content is modified.

  • Write a program that increments by 2 the content of a register 10 times.

  • Write a program that shifts the content of a register until the least significant bit is 0. Think of a way to stop shifting if the content of the register is 11111111 and add it to your program.
Please record your programs in the same Word doc and label them under the section 'Phase Four.'

I am not looking for answer or to cheat. I am just wondering if anyone knows a youtube link that explains or shows this last part. I have look at the study.com lessons and they do not seem to explain this. Any help would be greatly appreciated. 
Were you able to build the ALU and CPU based on the content of the lessons?
Not really the lessons help a little but I been watching mostly YouTube videos to piece it together

(04-25-2020, 05:05 PM)terryd5150 Wrote:
(04-25-2020, 03:27 PM)maxxor6868 Wrote: Hello! I am on my last study.com course and I am having a little bit of difficulty with the final assignment. I have completed 3 outta of 4 parts of the project but the last phase confuses me alot and I am completely lost. I did good on the homework but not as good on the final and I really prefer not to spend $70 to raise my score. I just need a solid project score. But the project is confusing me. The part in particular is Phase Four
In order to be able to write assembly language for the CPU we need to add to instructions (without implementation):
  • branch to an address (name it JMP)

  • conditional branch to an address (name it CJMP and suppose that the jump takes place if the comparison operation result is 'equals')
Now, write the following programs using the assembly language you designed in the previous phases of the project as well as these two branching additional instructions:
  • Write a program that adds two operands.

  • Write a program that adds operands until the new value to be added is 0. You do not need to implement the input operations to modify the contents of the registers. Just assume that by the end of each iteration, the register content is modified.

  • Write a program that increments by 2 the content of a register 10 times.

  • Write a program that shifts the content of a register until the least significant bit is 0. Think of a way to stop shifting if the content of the register is 11111111 and add it to your program.
Please record your programs in the same Word doc and label them under the section 'Phase Four.'

I am not looking for answer or to cheat. I am just wondering if anyone knows a youtube link that explains or shows this last part. I have look at the study.com lessons and they do not seem to explain this. Any help would be greatly appreciated. 
Were you able to build the ALU and CPU based on the content of the lessons?
Not really the lessons help a little but I been watching mostly YouTube videos to piece it together
Reply
#6
I need help on the first 3 phases!


Attached Files
.png   cv57f6bg87n9h8m0j.PNG (Size: 70.58 KB / Downloads: 103)
Reply
#7
Yea how do we even do this. It's hard and the SDC materials aren't nearly enough..!
Completed TESU BA in CS & Math

Reply
#8
Sorry, a bump. I am struggling and need help. With phase 2,3,4
Reply
#9
Throw in phase 1 just for good measure
Georgia Tech
MS Cybersecurity (Policy), 2021

Western Governors University
MBA IT Management, in progress (16/35cr, anticipated 2025)
BS IT Security, 2018

Northwestern California University School of Law
1L 20cr completed, withdrew from school, 2023-24

Thomas Edison State University
BA Computer Science, 2023
BA Psychology, 2016
AS Business Administration, 2023
Certificate in Operations Management, 2023
Certificate in Computer Information Systems, 2023

Chaffey College
AA Sociology, 2015

Accumulated Credit: Undergrad: 258.50 | Graduate: 68
Visit the DegreeForum Community Wiki!
[-] The following 1 user Likes jsd's post:
  • bluebooger
Reply
#10
(10-23-2021, 09:10 PM)jsd Wrote: Throw in phase 1 just for good measure

Not nice to make fun of someone's post when they really need help.

You have no idea what this person is going through.

Do you think this person signed up and posted this post as his/her 1st post without this issue being really serious?
Degrees: BA Computer Science, BS Business Administration with a concentration in CIS, AS Natural Science & Math, TESU. 4.0 GPA 2022.
Course Experience:  CLEP, Instantcert, Sophia.org, Study.com, Straighterline.com, Onlinedegree.org, Saylor.org, Csmlearn.com, and TEL Learning.
Certifications: W3Schools PHP, Google IT Support, Google Digital Marketing, Google Project Management
Reply


Possibly Related Threads...
Thread Author Replies Views Last Post
  New Study.com Courses Intro to Web Development, Intro to Project Managment Jonathan Whatley 0 58 11 hours ago
Last Post: Jonathan Whatley
  Study.com switch to chapter tests, changing grading weight & making quizzes optional jg_nuy 14 2,572 06-15-2025, 07:47 PM
Last Post: pluggingalong
  Universities in CA that accept Ace (Study, SL, and Sophia) credits Coachr21 10 831 06-13-2025, 04:40 PM
Last Post: bjcheung77
  Warm Reminders for Newcomers Planning to Study on Study.com Epiphany.y 0 215 06-12-2025, 07:05 PM
Last Post: Epiphany.y
  Does the Study.com College Saver Plan only include 2 exams per month? Epiphany.y 3 987 05-30-2025, 04:03 AM
Last Post: Epiphany.y
  Study.com is switching to non-proctored and open-book exams jg_nuy 72 21,961 05-26-2025, 10:15 AM
Last Post: pluggingalong
Exclamation Study.com Has Ignored My Support Requests for Nearly a Month. Desperately Need Help. EducationNation 4 1,632 05-22-2025, 11:04 AM
Last Post: animuscerebri
  Study.com Fraud or Misrepresentation kakasahib 0 609 05-17-2025, 06:22 PM
Last Post: kakasahib
  Study.com new pricing $95/mo Lee586 29 8,527 05-05-2025, 12:21 AM
Last Post: Mint Berry Crunch
  Recent Study.com Promo Offer - 4 classes/month, 30% off for 3 months bjcheung77 14 5,297 05-01-2025, 12:56 AM
Last Post: splirow

Forum Jump:


Users browsing this thread: