Introduction to microcontrollers :: architecture, programming, and interfacing for the Freescale 68HC12 /
The perfect choice for your one-semester course on Microcontrollers!
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Elektronisch E-Book |
Sprache: | English |
Veröffentlicht: |
Amsterdam ; Boston :
Elsevier Academic Press,
©2004.
|
Ausgabe: | 2nd ed. |
Schriftenreihe: | Academic Press series in engineering.
|
Schlagworte: | |
Online-Zugang: | Volltext |
Zusammenfassung: | The perfect choice for your one-semester course on Microcontrollers! |
Beschreibung: | Includes index. |
Beschreibung: | 1 online resource (xxxi, 451 pages) : illustrations |
ISBN: | 9780080470412 0080470416 9780124518384 0124518389 |
Internformat
MARC
LEADER | 00000cam a2200000 a 4500 | ||
---|---|---|---|
001 | ZDB-4-EBA-ocn123078591 | ||
003 | OCoLC | ||
005 | 20241004212047.0 | ||
006 | m o d | ||
007 | cr cnu---unuuu | ||
008 | 070413s2004 ne a o 001 0 eng d | ||
040 | |a N$T |b eng |e pn |c N$T |d YDXCP |d OCLCQ |d MERUC |d ZCU |d E7B |d OCLCQ |d IDEBK |d OCLCQ |d OCLCF |d OCLCO |d OCLCQ |d AGLDB |d OCLCQ |d ESU |d STF |d D6H |d OCLCQ |d VTS |d OCLCQ |d LEAUB |d M8D |d OCLCQ |d OCLCO |d OCLCQ |d OCLCO |d OCLCQ |d OCLCO |d OCLCL | ||
019 | |a 154690830 |a 441773576 |a 507258068 |a 648163253 |a 1035648553 | ||
020 | |a 9780080470412 |q (electronic bk.) | ||
020 | |a 0080470416 |q (electronic bk.) | ||
020 | |a 9780124518384 |q (alk. paper) | ||
020 | |a 0124518389 |q (alk. paper) | ||
020 | |z 0124518389 | ||
035 | |a (OCoLC)123078591 |z (OCoLC)154690830 |z (OCoLC)441773576 |z (OCoLC)507258068 |z (OCoLC)648163253 |z (OCoLC)1035648553 | ||
050 | 4 | |a TJ223.P76 |b L58 2004eb | |
072 | 7 | |a TEC |x 004000 |2 bisacsh | |
082 | 7 | |a 629.8/95 |2 22 | |
049 | |a MAIN | ||
100 | 1 | |a Lipovski, G. Jack. | |
245 | 1 | 0 | |a Introduction to microcontrollers : |b architecture, programming, and interfacing for the Freescale 68HC12 / |c G.J. Lipovski. |
250 | |a 2nd ed. | ||
260 | |a Amsterdam ; |a Boston : |b Elsevier Academic Press, |c ©2004. | ||
300 | |a 1 online resource (xxxi, 451 pages) : |b illustrations | ||
336 | |a text |b txt |2 rdacontent | ||
337 | |a computer |b c |2 rdamedia | ||
338 | |a online resource |b cr |2 rdacarrier | ||
490 | 1 | |a Academic Press series in engineering | |
500 | |a Includes index. | ||
505 | 0 | |a Cover -- Contents -- Preface -- List of Figures -- List of Tables -- Acknowledgments -- About the Author -- CHAPTER 1 Basic Computer Structure and the 6812 -- 1.1 Basic Computer Structure -- 1.2 The Instruction -- 1.3 A Few Instructions and Some Simple Programs -- 1.4 6812 Microcontroller Organizations -- 1.5 Variable Word Width -- 1.6 Summary and Further Reading -- CHAPTER 2 The Instruction Set -- 2.1 Move Instructions -- 2.2 Arithmetic Instructions -- 2.3 Logic Instructions -- 2.4 Edit Instructions -- 2.5 Control Instructions -- 2.6 Input/Output Instructions -- 2.7 Special Instructions -- 2.8 Remarks -- CHAPTER 3 Addressing Modes -- 3.1 Opcode Byte Addressing Modes -- 3.2 Post Byte Index Addressing Modes -- 3.3 Relative Addressing and Position Independence -- 3.4 Stack Index Addressing, Reentrancy, and Recursion -- 3.5 Architectural Notions of Addressing -- 3.6 Summary -- CHAPTER 4 Assembly-Language Programming -- 4.1 Introductory Example and Assembler Printout -- 4.2 Assembler Directives -- 4.3 Mechanics of a Two-Pass Assembler -- 4.4 Character String Operations -- 4.5 A Simplified Two-Pass Assembler -- 4.6 Debugging Source Code Programs -- 4.7 Summary -- CHAPTER 5 Advanced Assemblers, Linkers, and Loaders -- 5.1 Cross-Assemblers and Downloaders -- 5.2 Relocatable Assemblers and Loaders -- 5.3 Conditional Assemblers -- 5.4 Macro Assemblers -- 5.5 Documentation -- 5.6 Summary -- CHAPTER 6 Assembly-Language Subroutines -- 6.1 Local Variables -- 6.2 Passing Parameters -- 6.3 Passing Arguments by Value, Reference, and Name -- 6.4 Calling and Returning Mechanisms -- 6.5 Summary -- CHAPTER 7 Arithmetic Operations -- 7.1 Multiplication and Division -- 7.2 Integer Conversion -- 7.3 From Formulas to Macro Programs -- 7.4 Simple Macro Expansions -- 7.5 Long Integer Arithmetic -- 7.6 Optimization -- 7.7 Floating-Point Arithmetic and Conversion -- 7.8 Fuzzy Logic -- 7.9 Summary -- CHAPTER 8 Programming in C and C++ -- 8.1 Compilers and Interpreters -- 8.2 Operators and Assignment Statements -- 8.3 Conditional and Loop Statements -- 8.4 Constants and Variables -- 8.5 Procedures and Their Arguments -- 8.6 An Example -- 8.7 Object-Oriented Programming in C++ -- 8.8 Summary -- CHAPTER 9 Implementation of C Procedures -- 9.1 Global and Local Variables -- 9.2 Expressions and Assignment Statements -- 9.3 Conditional Statements -- 9.4 Loop Statements, Arrays, and Structs -- 9.5 Procedure Calls and Arguments -- 9.6 Examples from Character String Procedures -- 9.7 Summary -- CHAPTER 10 Elementary Data Structures -- 10.1 What a Data Structure Is -- 10.2 Indexable Data Structures -- 10.3 Sequential Data Structures -- 10.4 Linked List Structures -- 10.5 Summary -- CHAPTER 11 Input/Output -- 11.1 Input and Output Devices -- 11.2 Parallel Ports -- 11.3 Input and Output Software -- 11.4 Synchronization Hardware -- 11.5 Gadfly Synchronization -- 11.6 Interrupt Synchroniza. | |
588 | 0 | |a Print version record. | |
520 | |a The perfect choice for your one-semester course on Microcontrollers! | ||
650 | 0 | |a Programmable controllers. |0 http://id.loc.gov/authorities/subjects/sh85107305 | |
650 | 0 | |a Microprocessors. |0 http://id.loc.gov/authorities/subjects/sh85084898 | |
650 | 6 | |a Automates programmables. | |
650 | 7 | |a TECHNOLOGY & ENGINEERING |x Automation. |2 bisacsh | |
650 | 7 | |a Microprocessors |2 fast | |
650 | 7 | |a Programmable controllers |2 fast | |
758 | |i has work: |a Introduction to microcontrollers (Text) |1 https://id.oclc.org/worldcat/entity/E39PCG4Cc77Jg3tMrWYbf9xbV3 |4 https://id.oclc.org/worldcat/ontology/hasWork | ||
776 | 0 | 8 | |i Print version: |a Lipovski, G. Jack. |t Introduction to microcontrollers. |b 2nd ed. |d Amsterdam ; Boston : Elsevier Academic Press, ©2004 |z 0124518389 |z 9780124518384 |w (DLC) 2004052840 |w (OCoLC)55535019 |
830 | 0 | |a Academic Press series in engineering. |0 http://id.loc.gov/authorities/names/n98066655 | |
856 | 4 | 0 | |l FWS01 |p ZDB-4-EBA |q FWS_PDA_EBA |u https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=187196 |3 Volltext |
938 | |a ebrary |b EBRY |n ebr10166996 | ||
938 | |a EBSCOhost |b EBSC |n 187196 | ||
938 | |a ProQuest MyiLibrary Digital eBook Collection |b IDEB |n 96140 | ||
938 | |a YBP Library Services |b YANK |n 2546614 | ||
994 | |a 92 |b GEBAY | ||
912 | |a ZDB-4-EBA | ||
049 | |a DE-863 |
Datensatz im Suchindex
DE-BY-FWS_katkey | ZDB-4-EBA-ocn123078591 |
---|---|
_version_ | 1816881646746468352 |
adam_text | |
any_adam_object | |
author | Lipovski, G. Jack |
author_facet | Lipovski, G. Jack |
author_role | |
author_sort | Lipovski, G. Jack |
author_variant | g j l gj gjl |
building | Verbundindex |
bvnumber | localFWS |
callnumber-first | T - Technology |
callnumber-label | TJ223 |
callnumber-raw | TJ223.P76 L58 2004eb |
callnumber-search | TJ223.P76 L58 2004eb |
callnumber-sort | TJ 3223 P76 L58 42004EB |
callnumber-subject | TJ - Mechanical Engineering and Machinery |
collection | ZDB-4-EBA |
contents | Cover -- Contents -- Preface -- List of Figures -- List of Tables -- Acknowledgments -- About the Author -- CHAPTER 1 Basic Computer Structure and the 6812 -- 1.1 Basic Computer Structure -- 1.2 The Instruction -- 1.3 A Few Instructions and Some Simple Programs -- 1.4 6812 Microcontroller Organizations -- 1.5 Variable Word Width -- 1.6 Summary and Further Reading -- CHAPTER 2 The Instruction Set -- 2.1 Move Instructions -- 2.2 Arithmetic Instructions -- 2.3 Logic Instructions -- 2.4 Edit Instructions -- 2.5 Control Instructions -- 2.6 Input/Output Instructions -- 2.7 Special Instructions -- 2.8 Remarks -- CHAPTER 3 Addressing Modes -- 3.1 Opcode Byte Addressing Modes -- 3.2 Post Byte Index Addressing Modes -- 3.3 Relative Addressing and Position Independence -- 3.4 Stack Index Addressing, Reentrancy, and Recursion -- 3.5 Architectural Notions of Addressing -- 3.6 Summary -- CHAPTER 4 Assembly-Language Programming -- 4.1 Introductory Example and Assembler Printout -- 4.2 Assembler Directives -- 4.3 Mechanics of a Two-Pass Assembler -- 4.4 Character String Operations -- 4.5 A Simplified Two-Pass Assembler -- 4.6 Debugging Source Code Programs -- 4.7 Summary -- CHAPTER 5 Advanced Assemblers, Linkers, and Loaders -- 5.1 Cross-Assemblers and Downloaders -- 5.2 Relocatable Assemblers and Loaders -- 5.3 Conditional Assemblers -- 5.4 Macro Assemblers -- 5.5 Documentation -- 5.6 Summary -- CHAPTER 6 Assembly-Language Subroutines -- 6.1 Local Variables -- 6.2 Passing Parameters -- 6.3 Passing Arguments by Value, Reference, and Name -- 6.4 Calling and Returning Mechanisms -- 6.5 Summary -- CHAPTER 7 Arithmetic Operations -- 7.1 Multiplication and Division -- 7.2 Integer Conversion -- 7.3 From Formulas to Macro Programs -- 7.4 Simple Macro Expansions -- 7.5 Long Integer Arithmetic -- 7.6 Optimization -- 7.7 Floating-Point Arithmetic and Conversion -- 7.8 Fuzzy Logic -- 7.9 Summary -- CHAPTER 8 Programming in C and C++ -- 8.1 Compilers and Interpreters -- 8.2 Operators and Assignment Statements -- 8.3 Conditional and Loop Statements -- 8.4 Constants and Variables -- 8.5 Procedures and Their Arguments -- 8.6 An Example -- 8.7 Object-Oriented Programming in C++ -- 8.8 Summary -- CHAPTER 9 Implementation of C Procedures -- 9.1 Global and Local Variables -- 9.2 Expressions and Assignment Statements -- 9.3 Conditional Statements -- 9.4 Loop Statements, Arrays, and Structs -- 9.5 Procedure Calls and Arguments -- 9.6 Examples from Character String Procedures -- 9.7 Summary -- CHAPTER 10 Elementary Data Structures -- 10.1 What a Data Structure Is -- 10.2 Indexable Data Structures -- 10.3 Sequential Data Structures -- 10.4 Linked List Structures -- 10.5 Summary -- CHAPTER 11 Input/Output -- 11.1 Input and Output Devices -- 11.2 Parallel Ports -- 11.3 Input and Output Software -- 11.4 Synchronization Hardware -- 11.5 Gadfly Synchronization -- 11.6 Interrupt Synchroniza. |
ctrlnum | (OCoLC)123078591 |
dewey-full | 629.8/95 |
dewey-hundreds | 600 - Technology (Applied sciences) |
dewey-ones | 629 - Other branches of engineering |
dewey-raw | 629.8/95 |
dewey-search | 629.8/95 |
dewey-sort | 3629.8 295 |
dewey-tens | 620 - Engineering and allied operations |
discipline | Mess-/Steuerungs-/Regelungs-/Automatisierungstechnik / Mechatronik |
edition | 2nd ed. |
format | Electronic eBook |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>05726cam a2200577 a 4500</leader><controlfield tag="001">ZDB-4-EBA-ocn123078591</controlfield><controlfield tag="003">OCoLC</controlfield><controlfield tag="005">20241004212047.0</controlfield><controlfield tag="006">m o d </controlfield><controlfield tag="007">cr cnu---unuuu</controlfield><controlfield tag="008">070413s2004 ne a o 001 0 eng d</controlfield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">N$T</subfield><subfield code="b">eng</subfield><subfield code="e">pn</subfield><subfield code="c">N$T</subfield><subfield code="d">YDXCP</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">MERUC</subfield><subfield code="d">ZCU</subfield><subfield code="d">E7B</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">IDEBK</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">OCLCF</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">AGLDB</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">ESU</subfield><subfield code="d">STF</subfield><subfield code="d">D6H</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">VTS</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">LEAUB</subfield><subfield code="d">M8D</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCL</subfield></datafield><datafield tag="019" ind1=" " ind2=" "><subfield code="a">154690830</subfield><subfield code="a">441773576</subfield><subfield code="a">507258068</subfield><subfield code="a">648163253</subfield><subfield code="a">1035648553</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9780080470412</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">0080470416</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9780124518384</subfield><subfield code="q">(alk. paper)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">0124518389</subfield><subfield code="q">(alk. paper)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="z">0124518389</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)123078591</subfield><subfield code="z">(OCoLC)154690830</subfield><subfield code="z">(OCoLC)441773576</subfield><subfield code="z">(OCoLC)507258068</subfield><subfield code="z">(OCoLC)648163253</subfield><subfield code="z">(OCoLC)1035648553</subfield></datafield><datafield tag="050" ind1=" " ind2="4"><subfield code="a">TJ223.P76</subfield><subfield code="b">L58 2004eb</subfield></datafield><datafield tag="072" ind1=" " ind2="7"><subfield code="a">TEC</subfield><subfield code="x">004000</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="082" ind1="7" ind2=" "><subfield code="a">629.8/95</subfield><subfield code="2">22</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">MAIN</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Lipovski, G. Jack.</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Introduction to microcontrollers :</subfield><subfield code="b">architecture, programming, and interfacing for the Freescale 68HC12 /</subfield><subfield code="c">G.J. Lipovski.</subfield></datafield><datafield tag="250" ind1=" " ind2=" "><subfield code="a">2nd ed.</subfield></datafield><datafield tag="260" ind1=" " ind2=" "><subfield code="a">Amsterdam ;</subfield><subfield code="a">Boston :</subfield><subfield code="b">Elsevier Academic Press,</subfield><subfield code="c">©2004.</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">1 online resource (xxxi, 451 pages) :</subfield><subfield code="b">illustrations</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="a">text</subfield><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="a">computer</subfield><subfield code="b">c</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="a">online resource</subfield><subfield code="b">cr</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="490" ind1="1" ind2=" "><subfield code="a">Academic Press series in engineering</subfield></datafield><datafield tag="500" ind1=" " ind2=" "><subfield code="a">Includes index.</subfield></datafield><datafield tag="505" ind1="0" ind2=" "><subfield code="a">Cover -- Contents -- Preface -- List of Figures -- List of Tables -- Acknowledgments -- About the Author -- CHAPTER 1 Basic Computer Structure and the 6812 -- 1.1 Basic Computer Structure -- 1.2 The Instruction -- 1.3 A Few Instructions and Some Simple Programs -- 1.4 6812 Microcontroller Organizations -- 1.5 Variable Word Width -- 1.6 Summary and Further Reading -- CHAPTER 2 The Instruction Set -- 2.1 Move Instructions -- 2.2 Arithmetic Instructions -- 2.3 Logic Instructions -- 2.4 Edit Instructions -- 2.5 Control Instructions -- 2.6 Input/Output Instructions -- 2.7 Special Instructions -- 2.8 Remarks -- CHAPTER 3 Addressing Modes -- 3.1 Opcode Byte Addressing Modes -- 3.2 Post Byte Index Addressing Modes -- 3.3 Relative Addressing and Position Independence -- 3.4 Stack Index Addressing, Reentrancy, and Recursion -- 3.5 Architectural Notions of Addressing -- 3.6 Summary -- CHAPTER 4 Assembly-Language Programming -- 4.1 Introductory Example and Assembler Printout -- 4.2 Assembler Directives -- 4.3 Mechanics of a Two-Pass Assembler -- 4.4 Character String Operations -- 4.5 A Simplified Two-Pass Assembler -- 4.6 Debugging Source Code Programs -- 4.7 Summary -- CHAPTER 5 Advanced Assemblers, Linkers, and Loaders -- 5.1 Cross-Assemblers and Downloaders -- 5.2 Relocatable Assemblers and Loaders -- 5.3 Conditional Assemblers -- 5.4 Macro Assemblers -- 5.5 Documentation -- 5.6 Summary -- CHAPTER 6 Assembly-Language Subroutines -- 6.1 Local Variables -- 6.2 Passing Parameters -- 6.3 Passing Arguments by Value, Reference, and Name -- 6.4 Calling and Returning Mechanisms -- 6.5 Summary -- CHAPTER 7 Arithmetic Operations -- 7.1 Multiplication and Division -- 7.2 Integer Conversion -- 7.3 From Formulas to Macro Programs -- 7.4 Simple Macro Expansions -- 7.5 Long Integer Arithmetic -- 7.6 Optimization -- 7.7 Floating-Point Arithmetic and Conversion -- 7.8 Fuzzy Logic -- 7.9 Summary -- CHAPTER 8 Programming in C and C++ -- 8.1 Compilers and Interpreters -- 8.2 Operators and Assignment Statements -- 8.3 Conditional and Loop Statements -- 8.4 Constants and Variables -- 8.5 Procedures and Their Arguments -- 8.6 An Example -- 8.7 Object-Oriented Programming in C++ -- 8.8 Summary -- CHAPTER 9 Implementation of C Procedures -- 9.1 Global and Local Variables -- 9.2 Expressions and Assignment Statements -- 9.3 Conditional Statements -- 9.4 Loop Statements, Arrays, and Structs -- 9.5 Procedure Calls and Arguments -- 9.6 Examples from Character String Procedures -- 9.7 Summary -- CHAPTER 10 Elementary Data Structures -- 10.1 What a Data Structure Is -- 10.2 Indexable Data Structures -- 10.3 Sequential Data Structures -- 10.4 Linked List Structures -- 10.5 Summary -- CHAPTER 11 Input/Output -- 11.1 Input and Output Devices -- 11.2 Parallel Ports -- 11.3 Input and Output Software -- 11.4 Synchronization Hardware -- 11.5 Gadfly Synchronization -- 11.6 Interrupt Synchroniza.</subfield></datafield><datafield tag="588" ind1="0" ind2=" "><subfield code="a">Print version record.</subfield></datafield><datafield tag="520" ind1=" " ind2=" "><subfield code="a">The perfect choice for your one-semester course on Microcontrollers!</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Programmable controllers.</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh85107305</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Microprocessors.</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh85084898</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Automates programmables.</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">TECHNOLOGY & ENGINEERING</subfield><subfield code="x">Automation.</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Microprocessors</subfield><subfield code="2">fast</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Programmable controllers</subfield><subfield code="2">fast</subfield></datafield><datafield tag="758" ind1=" " ind2=" "><subfield code="i">has work:</subfield><subfield code="a">Introduction to microcontrollers (Text)</subfield><subfield code="1">https://id.oclc.org/worldcat/entity/E39PCG4Cc77Jg3tMrWYbf9xbV3</subfield><subfield code="4">https://id.oclc.org/worldcat/ontology/hasWork</subfield></datafield><datafield tag="776" ind1="0" ind2="8"><subfield code="i">Print version:</subfield><subfield code="a">Lipovski, G. Jack.</subfield><subfield code="t">Introduction to microcontrollers.</subfield><subfield code="b">2nd ed.</subfield><subfield code="d">Amsterdam ; Boston : Elsevier Academic Press, ©2004</subfield><subfield code="z">0124518389</subfield><subfield code="z">9780124518384</subfield><subfield code="w">(DLC) 2004052840</subfield><subfield code="w">(OCoLC)55535019</subfield></datafield><datafield tag="830" ind1=" " ind2="0"><subfield code="a">Academic Press series in engineering.</subfield><subfield code="0">http://id.loc.gov/authorities/names/n98066655</subfield></datafield><datafield tag="856" ind1="4" ind2="0"><subfield code="l">FWS01</subfield><subfield code="p">ZDB-4-EBA</subfield><subfield code="q">FWS_PDA_EBA</subfield><subfield code="u">https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=187196</subfield><subfield code="3">Volltext</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">ebrary</subfield><subfield code="b">EBRY</subfield><subfield code="n">ebr10166996</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">EBSCOhost</subfield><subfield code="b">EBSC</subfield><subfield code="n">187196</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">ProQuest MyiLibrary Digital eBook Collection</subfield><subfield code="b">IDEB</subfield><subfield code="n">96140</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">YBP Library Services</subfield><subfield code="b">YANK</subfield><subfield code="n">2546614</subfield></datafield><datafield tag="994" ind1=" " ind2=" "><subfield code="a">92</subfield><subfield code="b">GEBAY</subfield></datafield><datafield tag="912" ind1=" " ind2=" "><subfield code="a">ZDB-4-EBA</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-863</subfield></datafield></record></collection> |
id | ZDB-4-EBA-ocn123078591 |
illustrated | Illustrated |
indexdate | 2024-11-27T13:16:02Z |
institution | BVB |
isbn | 9780080470412 0080470416 9780124518384 0124518389 |
language | English |
oclc_num | 123078591 |
open_access_boolean | |
owner | MAIN DE-863 DE-BY-FWS |
owner_facet | MAIN DE-863 DE-BY-FWS |
physical | 1 online resource (xxxi, 451 pages) : illustrations |
psigel | ZDB-4-EBA |
publishDate | 2004 |
publishDateSearch | 2004 |
publishDateSort | 2004 |
publisher | Elsevier Academic Press, |
record_format | marc |
series | Academic Press series in engineering. |
series2 | Academic Press series in engineering |
spelling | Lipovski, G. Jack. Introduction to microcontrollers : architecture, programming, and interfacing for the Freescale 68HC12 / G.J. Lipovski. 2nd ed. Amsterdam ; Boston : Elsevier Academic Press, ©2004. 1 online resource (xxxi, 451 pages) : illustrations text txt rdacontent computer c rdamedia online resource cr rdacarrier Academic Press series in engineering Includes index. Cover -- Contents -- Preface -- List of Figures -- List of Tables -- Acknowledgments -- About the Author -- CHAPTER 1 Basic Computer Structure and the 6812 -- 1.1 Basic Computer Structure -- 1.2 The Instruction -- 1.3 A Few Instructions and Some Simple Programs -- 1.4 6812 Microcontroller Organizations -- 1.5 Variable Word Width -- 1.6 Summary and Further Reading -- CHAPTER 2 The Instruction Set -- 2.1 Move Instructions -- 2.2 Arithmetic Instructions -- 2.3 Logic Instructions -- 2.4 Edit Instructions -- 2.5 Control Instructions -- 2.6 Input/Output Instructions -- 2.7 Special Instructions -- 2.8 Remarks -- CHAPTER 3 Addressing Modes -- 3.1 Opcode Byte Addressing Modes -- 3.2 Post Byte Index Addressing Modes -- 3.3 Relative Addressing and Position Independence -- 3.4 Stack Index Addressing, Reentrancy, and Recursion -- 3.5 Architectural Notions of Addressing -- 3.6 Summary -- CHAPTER 4 Assembly-Language Programming -- 4.1 Introductory Example and Assembler Printout -- 4.2 Assembler Directives -- 4.3 Mechanics of a Two-Pass Assembler -- 4.4 Character String Operations -- 4.5 A Simplified Two-Pass Assembler -- 4.6 Debugging Source Code Programs -- 4.7 Summary -- CHAPTER 5 Advanced Assemblers, Linkers, and Loaders -- 5.1 Cross-Assemblers and Downloaders -- 5.2 Relocatable Assemblers and Loaders -- 5.3 Conditional Assemblers -- 5.4 Macro Assemblers -- 5.5 Documentation -- 5.6 Summary -- CHAPTER 6 Assembly-Language Subroutines -- 6.1 Local Variables -- 6.2 Passing Parameters -- 6.3 Passing Arguments by Value, Reference, and Name -- 6.4 Calling and Returning Mechanisms -- 6.5 Summary -- CHAPTER 7 Arithmetic Operations -- 7.1 Multiplication and Division -- 7.2 Integer Conversion -- 7.3 From Formulas to Macro Programs -- 7.4 Simple Macro Expansions -- 7.5 Long Integer Arithmetic -- 7.6 Optimization -- 7.7 Floating-Point Arithmetic and Conversion -- 7.8 Fuzzy Logic -- 7.9 Summary -- CHAPTER 8 Programming in C and C++ -- 8.1 Compilers and Interpreters -- 8.2 Operators and Assignment Statements -- 8.3 Conditional and Loop Statements -- 8.4 Constants and Variables -- 8.5 Procedures and Their Arguments -- 8.6 An Example -- 8.7 Object-Oriented Programming in C++ -- 8.8 Summary -- CHAPTER 9 Implementation of C Procedures -- 9.1 Global and Local Variables -- 9.2 Expressions and Assignment Statements -- 9.3 Conditional Statements -- 9.4 Loop Statements, Arrays, and Structs -- 9.5 Procedure Calls and Arguments -- 9.6 Examples from Character String Procedures -- 9.7 Summary -- CHAPTER 10 Elementary Data Structures -- 10.1 What a Data Structure Is -- 10.2 Indexable Data Structures -- 10.3 Sequential Data Structures -- 10.4 Linked List Structures -- 10.5 Summary -- CHAPTER 11 Input/Output -- 11.1 Input and Output Devices -- 11.2 Parallel Ports -- 11.3 Input and Output Software -- 11.4 Synchronization Hardware -- 11.5 Gadfly Synchronization -- 11.6 Interrupt Synchroniza. Print version record. The perfect choice for your one-semester course on Microcontrollers! Programmable controllers. http://id.loc.gov/authorities/subjects/sh85107305 Microprocessors. http://id.loc.gov/authorities/subjects/sh85084898 Automates programmables. TECHNOLOGY & ENGINEERING Automation. bisacsh Microprocessors fast Programmable controllers fast has work: Introduction to microcontrollers (Text) https://id.oclc.org/worldcat/entity/E39PCG4Cc77Jg3tMrWYbf9xbV3 https://id.oclc.org/worldcat/ontology/hasWork Print version: Lipovski, G. Jack. Introduction to microcontrollers. 2nd ed. Amsterdam ; Boston : Elsevier Academic Press, ©2004 0124518389 9780124518384 (DLC) 2004052840 (OCoLC)55535019 Academic Press series in engineering. http://id.loc.gov/authorities/names/n98066655 FWS01 ZDB-4-EBA FWS_PDA_EBA https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=187196 Volltext |
spellingShingle | Lipovski, G. Jack Introduction to microcontrollers : architecture, programming, and interfacing for the Freescale 68HC12 / Academic Press series in engineering. Cover -- Contents -- Preface -- List of Figures -- List of Tables -- Acknowledgments -- About the Author -- CHAPTER 1 Basic Computer Structure and the 6812 -- 1.1 Basic Computer Structure -- 1.2 The Instruction -- 1.3 A Few Instructions and Some Simple Programs -- 1.4 6812 Microcontroller Organizations -- 1.5 Variable Word Width -- 1.6 Summary and Further Reading -- CHAPTER 2 The Instruction Set -- 2.1 Move Instructions -- 2.2 Arithmetic Instructions -- 2.3 Logic Instructions -- 2.4 Edit Instructions -- 2.5 Control Instructions -- 2.6 Input/Output Instructions -- 2.7 Special Instructions -- 2.8 Remarks -- CHAPTER 3 Addressing Modes -- 3.1 Opcode Byte Addressing Modes -- 3.2 Post Byte Index Addressing Modes -- 3.3 Relative Addressing and Position Independence -- 3.4 Stack Index Addressing, Reentrancy, and Recursion -- 3.5 Architectural Notions of Addressing -- 3.6 Summary -- CHAPTER 4 Assembly-Language Programming -- 4.1 Introductory Example and Assembler Printout -- 4.2 Assembler Directives -- 4.3 Mechanics of a Two-Pass Assembler -- 4.4 Character String Operations -- 4.5 A Simplified Two-Pass Assembler -- 4.6 Debugging Source Code Programs -- 4.7 Summary -- CHAPTER 5 Advanced Assemblers, Linkers, and Loaders -- 5.1 Cross-Assemblers and Downloaders -- 5.2 Relocatable Assemblers and Loaders -- 5.3 Conditional Assemblers -- 5.4 Macro Assemblers -- 5.5 Documentation -- 5.6 Summary -- CHAPTER 6 Assembly-Language Subroutines -- 6.1 Local Variables -- 6.2 Passing Parameters -- 6.3 Passing Arguments by Value, Reference, and Name -- 6.4 Calling and Returning Mechanisms -- 6.5 Summary -- CHAPTER 7 Arithmetic Operations -- 7.1 Multiplication and Division -- 7.2 Integer Conversion -- 7.3 From Formulas to Macro Programs -- 7.4 Simple Macro Expansions -- 7.5 Long Integer Arithmetic -- 7.6 Optimization -- 7.7 Floating-Point Arithmetic and Conversion -- 7.8 Fuzzy Logic -- 7.9 Summary -- CHAPTER 8 Programming in C and C++ -- 8.1 Compilers and Interpreters -- 8.2 Operators and Assignment Statements -- 8.3 Conditional and Loop Statements -- 8.4 Constants and Variables -- 8.5 Procedures and Their Arguments -- 8.6 An Example -- 8.7 Object-Oriented Programming in C++ -- 8.8 Summary -- CHAPTER 9 Implementation of C Procedures -- 9.1 Global and Local Variables -- 9.2 Expressions and Assignment Statements -- 9.3 Conditional Statements -- 9.4 Loop Statements, Arrays, and Structs -- 9.5 Procedure Calls and Arguments -- 9.6 Examples from Character String Procedures -- 9.7 Summary -- CHAPTER 10 Elementary Data Structures -- 10.1 What a Data Structure Is -- 10.2 Indexable Data Structures -- 10.3 Sequential Data Structures -- 10.4 Linked List Structures -- 10.5 Summary -- CHAPTER 11 Input/Output -- 11.1 Input and Output Devices -- 11.2 Parallel Ports -- 11.3 Input and Output Software -- 11.4 Synchronization Hardware -- 11.5 Gadfly Synchronization -- 11.6 Interrupt Synchroniza. Programmable controllers. http://id.loc.gov/authorities/subjects/sh85107305 Microprocessors. http://id.loc.gov/authorities/subjects/sh85084898 Automates programmables. TECHNOLOGY & ENGINEERING Automation. bisacsh Microprocessors fast Programmable controllers fast |
subject_GND | http://id.loc.gov/authorities/subjects/sh85107305 http://id.loc.gov/authorities/subjects/sh85084898 |
title | Introduction to microcontrollers : architecture, programming, and interfacing for the Freescale 68HC12 / |
title_auth | Introduction to microcontrollers : architecture, programming, and interfacing for the Freescale 68HC12 / |
title_exact_search | Introduction to microcontrollers : architecture, programming, and interfacing for the Freescale 68HC12 / |
title_full | Introduction to microcontrollers : architecture, programming, and interfacing for the Freescale 68HC12 / G.J. Lipovski. |
title_fullStr | Introduction to microcontrollers : architecture, programming, and interfacing for the Freescale 68HC12 / G.J. Lipovski. |
title_full_unstemmed | Introduction to microcontrollers : architecture, programming, and interfacing for the Freescale 68HC12 / G.J. Lipovski. |
title_short | Introduction to microcontrollers : |
title_sort | introduction to microcontrollers architecture programming and interfacing for the freescale 68hc12 |
title_sub | architecture, programming, and interfacing for the Freescale 68HC12 / |
topic | Programmable controllers. http://id.loc.gov/authorities/subjects/sh85107305 Microprocessors. http://id.loc.gov/authorities/subjects/sh85084898 Automates programmables. TECHNOLOGY & ENGINEERING Automation. bisacsh Microprocessors fast Programmable controllers fast |
topic_facet | Programmable controllers. Microprocessors. Automates programmables. TECHNOLOGY & ENGINEERING Automation. Microprocessors Programmable controllers |
url | https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=187196 |
work_keys_str_mv | AT lipovskigjack introductiontomicrocontrollersarchitectureprogrammingandinterfacingforthefreescale68hc12 |