1 / 17

Computer Architecture and Assembly Language

Computer Architecture and Assembly Language. By Juthawut Chantharamalee. Suan Dusit Rajabhat University (Computer Science). บทที่ 11 โครงสร้าง ควบคุม ( Control Structure ). บทที่ 2. Suan Dusit Rajabhat University (Computer Science). การสร้างโครงสร้างการตัดสินใจแบบ if-then-else.

edan-suarez
Download Presentation

Computer Architecture and Assembly Language

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Computer Architecture and Assembly Language By Juthawut Chantharamalee Suan Dusit Rajabhat University (Computer Science)

  2. บทที่ 11โครงสร้างควบคุม(Control Structure) บทที่ 2 Suan Dusit Rajabhat University (Computer Science)

  3. การสร้างโครงสร้างการตัดสินใจแบบ if-then-else รูปแบบของโครงสร้างที่ง่ายที่สุดคือโครงสร้างแบบ if-then-else รูปแบบของโปรแกรมภาษาแอสเซมบลีให้มีโครงสร้างแบบ if-then-else มีลักษณะดังนี้ if condition is false then jump to elselabel then_actions jump to endif_label elselabel: else_actions endif_label: Suan Dusit Rajabhat University (Computer Science)

  4. ตัวอย่างโปรแกรม โปรแกรมที่ 11.1 Suan Dusit Rajabhat University (Computer Science)

  5. การสร้าง repeat until loop มีลักษณะรูปที่ 11.1 รูปที่ 11.1 Suan Dusit Rajabhat University (Computer Science)

  6. เราสามารถเขียนโปรแกรมโดยใช้ภาษาแอสเซมบลีโดยมีโครงสร้างแบบ repeat until ได้ดังตัวอย่าง โปรแกรมที่ 11.2 Suan Dusit Rajabhat University (Computer Science)

  7. repeat until loop รูปแบบของโปรแกรมภาษาแอสเซมบลีที่เทียบเท่ากับ repeat until loop มีลักษณะเป็นดังนี้ startlabel: action; ... action; if condition is false then jump to startlabel Suan Dusit Rajabhat University (Computer Science)

  8. การสร้าง while loop ในภาษาระดับสูงทั่วไปมีลักษณะรูปที่ 11.2 รูปที่ 11.2 Suan Dusit Rajabhat University (Computer Science)

  9. เราสามารถเขียนโปรแกรมโดยใช้ภาษาแอสเซมบลีโดยมีโครงสร้างแบบ while loop ได้ ดังตัวอย่าง Suan Dusit Rajabhat University (Computer Science)

  10. การสร้าง for loop มีลักษณะรูปที่ 11.3 รูปที่ 11.3 Suan Dusit Rajabhat University (Computer Science)

  11. for loop รูปแบบของโปรแกรมภาษาแอสเซมบลีที่มีโครงสร้างเป็นแบบ for loop มีลักษณะดังนี้ initialize index variables startloop: if index value is not in the range then jump to endloop action . . . action update index variable jump to startloop endloop: Suan Dusit Rajabhat University (Computer Science)

  12. เราสามารถเขียนโปรแกรมโดยใช้ภาษาแอสเซมบลีโดยมีโครงสร้างแบบ for loop ได้ดังตัวอย่าง โปรแกรมที่ 11.4 Suan Dusit Rajabhat University (Computer Science)

  13. for loop เรายังสามารถใช้คำสั่ง LOOP ในการสร้างโครงสร้างแบบ for loop ได้ เช่นเดียวกัน ดังต่อไปนี้ set the value of CX startloop: actions LOOP startloop แต่การใช้คำสั่ง LOOP ในการสร้างโครงสร้างแบบ for loop ไม่สามารถสร้างโครงสร้างการกระทำซ้ำที่มีความซับซ้อนมาก ๆ ได้ เช่นการกระทำซ้ำที่มีวงรอบของการกระทำซ้ำซ้อนกันหลาย ๆ วง Suan Dusit Rajabhat University (Computer Science)

  14. for loop • สำหรับคำสั่ง LOOPZ และ LOOPNZ นั้น เราสามารถนำมาใช้ในการสร้างโครงสร้างควบคุมที่มีความซับซ้อนขึ้นได้ โดยโครงสร้างดังกล่าวจะมีลักษณะปนกันระหว่าง for loop และ while loop หรือ repeat until นั่นคือเงื่อนไขควบคุมการกระทำซ้ำจะขึ้นกับทั้งค่าของรีจิสเตอร์ (มีลักษณะคล้ายโครงสร้างแบบ for loop) และเป็นเงื่อนไขจริง ๆ (คล้าย repeat until loop และ while loop) ดังในตัวอย่างโปรแกรมต่อไปนี้ Suan Dusit Rajabhat University (Computer Science)

  15. เงื่อนไขควบคุมการกระทำซ้ำจะขึ้นกับทั้งค่าของรีจิสเตอร์ โปรแกรมที่ 11.5 Suan Dusit Rajabhat University (Computer Science)

  16. สรุป • การใช้คำสั่งกระโดดมาสร้างเป็นโครงสร้างควบคุมรูปแบบต่าง ๆ การใช้คำสั่งกระโดดในลักษณะนี้จะทำให้โปรแกรมของเรามีความเป็นโครงสร้างมากขึ้นเช่น การสร้างโครงสร้างการตัดสินใจแบบ if-then-else, repeat until loop, while loopและfor loop เป็นต้นดังนั้นผู้เขียนโปรแกรมภาษาแอสเซมบลีจำเป็นจะต้องทำความเข้าวิธีการและรูปแบบการเลือกการสร้างโครงสร้างควบคุมใช้งานให้เหมาะสมมากที่สุด Suan Dusit Rajabhat University (Computer Science)

  17. The EndLesson 11 Suan Dusit Rajabhat University (Computer Science)

More Related