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: 101)
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
Northwestern California University School of Law
JD Law, 2027 (in progress, currently 2L)

Georgia Tech
MS Cybersecurity (Policy), 2021

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

Western Governors University
BS IT Security, 2018

Chaffey College
AA Sociology, 2015

Accumulated Credit: Undergrad: 258.50 | Graduate: 32

View all of my credit on my Omni Transcript!
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
  $10K - College Debt Payoff Program by Study.com bjcheung77 0 218 01-08-2025, 01:12 AM
Last Post: bjcheung77
  Study.com Free Degree Planning + First Month of College Saver bjcheung77 5 1,590 01-03-2025, 08:58 AM
Last Post: Solden81
  Sophia.org vs Study.com - English I & II bjcheung77 8 4,754 01-01-2025, 04:30 PM
Last Post: Harrynguyen
  Recent Study.com Promo Offer - 4 classes/month, 30% off for 3 months bjcheung77 10 1,936 12-29-2024, 09:00 PM
Last Post: bjcheung77
  Recommendations 4 online double major using Study.com [Degree: Finance & IT or PM BlackLabRat 1 256 12-15-2024, 04:22 AM
Last Post: bjcheung77
  Is it worth it to sign up to study.com for only 1 course? nicecoolego 6 624 12-08-2024, 02:19 PM
Last Post: bjcheung77
Lightbulb Study.com 5 Exam Limit per Month Clarification Jaymes 5 1,037 11-29-2024, 05:17 PM
Last Post: Avidreader
  I plan to apply for a master's degree in Computer Science in the US Thermor1993 3 373 11-27-2024, 03:24 PM
Last Post: Tomas
  Study.com Failed Exam BSBRose21 7 4,289 11-14-2024, 04:10 PM
Last Post: LevelUP
  The official guide to courses by Straighterline, Study, et al: We want YOUR input! aviator guy 401 514,383 10-11-2024, 01:35 PM
Last Post: wow

Forum Jump:


Users browsing this thread: 1 Guest(s)