Assembly language
-
Bài giảng Nhập môn Tin học - Chương 3: Ngôn ngữ máy, cung cấp cho người học những kiến thức như: Phân loại ngôn ngữ máy; Định dạng của lệnh trong ngôn ngữ máy; Thuận lợi và bất lợi của ngôn ngữ máy; hợp ngữ - Assembly/Symbolic language; ngôn ngữ trung gian của trình biên dịch và thông dịch;...Mời các bạn cùng tham khảo!
57p hoaanhdao709 19-01-2022 54 4 Download
-
Contents: Introduction to Assembly, Instruction Cycle, Addressing Modes
15p tungxxx 14-03-2017 56 1 Download
-
Bài giảng Kiến trúc máy tính - Chương 5: Lập trình hợp ngữ (Assembly Language) nêu lên ngôn ngữ cấp thấp, Macro Assembler, tập tin hợp ngữ nguồn, các phát biểu lệnh hợp ngữ, Assembly Language Instruction, Assembler directive.
22p maiyeumaiyeu28 13-01-2017 246 22 Download
-
Lecture "Charter 1: Introduction to Computers, the Internet and the Web," provides students with the knowledge: What Is a Computer, computer organization, early operating systems, personal, distributed and Client/Server Computing, machine Languages, Assembly Languages and High-Level Languages,... Inviting you refer.
34p doinhugiobay_13 24-01-2016 75 3 Download
-
Bài giảng Computer architecture: Part II - Instruction - Set Architecture hướng đến giới thiệu tới các bạn Instructions and Addressing; procedures and data; assembly language programs;... Hy vọng tài liệu là nguồn thông tin hữu ích cho quá trình học tập và nghiên cứu của các bạn.
76p codon_06 09-01-2016 71 6 Download
-
Bài giảng Cấu trúc dữ liệu và giải thuật (501040) được biên soạn nhằm trang bị cho các bạn những kiến thức về tổng quan, Stack, Queue, đệ qui, List và String, cây nhị phân, tìm kiếm, sắp xếp. Bài giảng phục vụ cho các bạn chuyên ngành Công nghệ thông tin và những ngành có liên quan.
129p cocacola_17 10-12-2015 80 15 Download
-
Bài giảng Lập trình hợp ngữ sau đây sẽ trình bày về ngôn ngữ lập trình; ngôn ngữ máy - Machine lanuages; hợp ngữ - Assembly Languages; ngôn ngữ cấp cao; chu kỳ sống của phần mềm; một số ngôn ngữ lập trình; lập trình hợp ngữ và một số nội dung khác.
63p cocacola_10 28-11-2015 105 22 Download
-
Chapter 1: Undertanding the .NET Framework overview .NET Framework; understanding the common language runtime; understanding the managed excution process; understanding assemblies and the global assembly cache; cogfiguration and security; application domains and run times hosts.
35p cocacola_09 23-11-2015 60 3 Download
-
Bài giảng "Vi xử lý - Chương 3.8: System và program developments of 8051" giới thiệu tới người đọc các nội dung: Assembly Language Programming, Assembly Language Program Format, Assemble-Time Expression Evaluation, Assembler Directives, Assembler State Controls, Storage Initialization/Reservation,... Mời các bạn cùng tham khảo nội dung chi tiết.
49p nhansinhaoanh_03 22-10-2015 87 6 Download
-
Hợp ngữ (assembly language) là ngôn ngữ của máy tính có vị trí ở giữangôn ngữ máy và ngôn ngữ cấp cao. Các ngôn ngữ cấp cao như Pascal, C sử dụngcác từ và các phát biểu dễ hiểu hơn. Ngôn ngữ máy (machine language) là ngônngữ ở dạng số nhị phân của máy tính. Một chương trình viết bằng ngôn ngữ máy làmột chuỗi các byte nhị phân biểu diễn các lệnh mà máy tính thực thi được. Hợp ngữ thay thế các mã nhị phân của ngôn ngữ máy bằng các mã gợi nhớgiúp ta dễ nhớ và...
6p levanhau_01031993 03-10-2013 132 17 Download
-
We can only do a linear search on an unsorted array, but on a sorted array we can do a binary search. In this chapter we will study two different algorithms for searching, linear search and binary search. In linear search we look through an unordered list until we find the item we are looking for. The length of time it takes to look up something using a linear search will depend upon the size of the list. Imagine trying to look up a name in a telephone directory if it was not alphabetized (sorted). If we were to use...
9p linhtk93 15-04-2013 52 3 Download
-
I have noticed over the years that students have great deal of difficulty dealing with composite and abstract data types. Therefore we are going spend an extra lab review material we have already learned. Vector data type, a variation of array, will be introduced as well. Vector data type (Vector Class) can be used when you need an array that grows dynamically. However, C++ does not allow us to declare size of an array dynamically like some other languages. It is important for you to declare the maximum size you will need. Suppose you are writing a program to keep...
7p linhtk93 15-04-2013 57 2 Download
-
Dr. John P. Abraham, Professor Until now we have talked about variables that hold values of differing data types. For example: int x =20; The memory location referenced by x has a value of 20. float y=21.22; The memory location referenced by y has a value of 21.22. In early chapters we discussed that a variable name is an alias for a memory address. What if we wanted to know the address of the memory location where the inter variable x that has a value of 20 is stored? We can use the address operator &x to do that....
5p linhtk93 15-04-2013 55 2 Download
-
When instructions within a program are executed one after the other sequentially that program is said to have a linear structure. Decision making after examining all available options is very important in life as well as in programming. For example, it is the law that all males 18 or older should register with the selective service. If you are writing a program to send out reminders to enforce this law, the decision to send the letter should be based on if a person is male and if he is 18 or older. In this chapter you will learn how to...
8p linhtk93 15-04-2013 83 2 Download
-
PREOCCUPATION with the problems of communication across language barriers has resulted in our time in the perfection, progressive application, or investigation of three new techniques.
0p nghetay_1 06-04-2013 80 3 Download
-
Although the entire of 128 bytes of RAM can be accessed using direct addressing mode, it is most often used to access RAM loc. 30 – 7FH. MOV R0, 40H MOV 56H, A MOV A, 4 ; ≡ MOV A, R4 MOV 6, 2 ; copy R2 to R6 ; MOV R6,R2 is invalid !
40p lqvang02 02-02-2013 44 6 Download
-
The high performance of the PIC® microcontroller can be attributed to the following architectural features: − Harvard Architecture − Instruction Pipelining − Large Register File − Single Cycle Instructions − Single Word Instructions − Long Word Instructions − Reduced Instruction Set − Orthogonal Instruction Set
97p trinh02 28-01-2013 65 6 Download
-
Assembly language is essentially the native language of your computer. Technically the processor of your machine understands machine code (consisting of ones and zeroes). But in order to write such a machine code program, you first write it in assembly language and then use an assembler to convert it to machine code.
0p doilan 25-01-2013 49 4 Download
-
Encapsulation/Reuse Mechanisms –Function Blocks, Functions, Data Types, Programs •Application-adapted Languages –Ladder Diagram (LD) for logic control (“power flow”) –Function Block Diagram (FBD) for regulatory control (“data flow”) –Sequential Function Chart (SFC) for state-machine control –Structured Text (ST) for information processing –Instruction List (IL) for assembly-level programming •A Mature, Internationally Adopted Standard –First edition: 1993 –Second edition: 2001...
25p ahnhea 13-10-2012 65 8 Download
-
Lập trình hướng đối tượng Công nghệ hướng đối tượng Ngôn ngữ lập trình Java Ví dụ và bài tập Lịch sử phát triển của các NNLT . Hợp ngữ (Assembly language): Là một ngôn ngữ lập trình tuần tự, gần với tập các lệnh mã máy của CPU. ▫ Khó nhớ, khó viết, nhất là với những bài toán phức tạp. ▫ Khó sửa lỗi, bảo trì. Lịch sử phát triển của các NNLT (2) NNLT cấu trúc/thủ tục: Xây dựng chương trình dựa trên các hàm/thủ tục/chương trình con Dữ liệu và xử...
57p nguyenvanhabk1 03-09-2012 123 33 Download