码迷,mamicode.com
首页 > 其他好文 > 详细

hcs12 microcontroller 笔记

时间:2016-11-19 13:39:00      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:比较   generate   addclass   pre   diff   类型   mina   require   frame   

文章来由

来到美国后,选了微处理器课,有幸老教授是 MIT 贝尔实验室出来的,希望好好学习这门课。

零、Chapter 0

第0章 绪论

0-2 Logic Gates

1、基础逻辑门(注意记住符号)

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

2、三态缓冲器

技术分享

三态缓冲器(Three-state buffer),又称为三态门、三态驱动器,其三态输出受到使能输出端的控制,当使能输出有效时,器件实现正常逻辑状态输出(逻辑0、逻辑1),当使能输入无效时,输出处于高阻状态,即等效于与所连的电路断开。

3、Logic Design using Gates 为什么可以用 and 做 carry

?Note that there are 4 possible outcomes when adding a pair of binary numbers

?0 + 0 = carry 0, sum 0
?0 + 1 = carry 0, sum 1
?1 + 0 = carry 0, sum 1
?1 + 1 = carry 1, sum 0

?Recall that the AND gate only outputs 1 if both inputs are true, thus it could be used to output the carry bit.

?Recall that the XOR gate only outputs 1 if and only if one of the inputs are true.

4、半加器

技术分享

另一种形式

技术分享

技术分享

5、全加器

技术分享

技术分享

6、三位全加器

技术分享

Application of the previous 3 Bit Adder

?Assume we want to add the binary numbers 010 and 011..

?Using the truth table shows before..

?We know that 0+1 with no carry in will result in Sum of 1 with no carry
?Also, 1+1 with no carry in will result in sum of 0 with carry out of 1 ?Finally, 0+0 with carry in will result in sum of 1 with no carry

?Result is 0101

?The take away here is that we can cascade as many full adders as we want to add as large of a pair of binary numbers as we want.

?For example a 64 bit sum would require 64 cascaded adders

0-3 Semiconductor Memory(ROM、RAM类型)

1、Internal Organization of computers

?3 major subsystems
?CPU – Central Processing Unit ?Memory ?I/O Input Output

?Connected by buses
?Data ?Address ?Control

技术分享

More About the Data Bus
?Analogous to Highway
?The more lanes, the more simultaneous traffic
?The more data buses the better
?This adds to expense
?Note that we currently have 64 bit CPUs and operating systems
?The size of the data bus is related to both size and precisions of arithmetic operations

More About the Address Bus
?Every addressable device must have a unique address
?The larger the address bus, the larger number of devices which may be addressed by the CPU
?Recall that decoders are used on addressable device to establish their address.
?The number of devices which may be addressed is always equal to 2^x where x is the number of address lines.
?For example, a 16 bit address bus can access 64k of addressable memory
?This is a unidirectional bus (send only from CPU)

2、Relation of CPU to RAM and ROM

技术分享

3、Memory Capacity

?This is the number of bits a memory chip can store
?Chip capacity has units of bits, Computer system capacity has units of bytes

4、Memory Organization

?Memory chips are organized into a number of locations within the IC
?Each location can hold 1, 4, 8, 16, or more bits
?The number of bits that each location will hold is equal to the number of data
pins on the chip.
?The number of locations on the chip is determined by the number of address pins on the chip say x. 2^x is the number of locations (addresses) on the chip
?Total number of bits which may be stored on the entire chip is given by 2^(address pins) times the number of data pins

技术分享

Another Organization/Capacity Example

?We have a chip with 256k capacity with 8 data pins.
?The organization is 256k/8 = 32K x 8 ?The number of address lines is 15 since 2^15 = 32K

5、不同ROM类型

Different types such as:
?PROM
?EPROM
?EEPROM
?FLASH EPROM
?MASK PROM

(1)PROM (programmable ROM) and OTP

技术分享

(2)EPROM (erasable programmable ROM) and UV-EPROM

技术分享

(3)Some UV-EPROM Memory Chips

技术分享

(4)EEPROM (electrically erasable programmable ROM)

技术分享

(5)Flash Memory EPROM

技术分享

(6)Mask ROM

技术分享

6、不同RAM类型

3 types
?Static RAM
?Nonvolatile RAM
?Dynamic Ram

(1)SRAM (static RAM)

技术分享

(2)NV-RAM (nonvolatile RAM)

技术分享

(3)DRAM (dynamic RAM)

技术分享

技术分享

7、Memory Block Selection

?Simple Logic Gates
?Using 74LS138
?Programmable Logic such as CPLD or FPGA

技术分享

技术分享

详见:http://blog.csdn.net/scythe666/article/details/52428243

Using the 74LS138 3 – 8 decoder

?One of the most widely used decoders ?3 inputs A, B, and C generate 8 active low outputs Y0 to Y7, ?Each output is connected to CS of a different memory device allowing
control of 8 memory blocks
?Three additional inputs G1, G2A, and G2B may connected to an Address or Control Signal
?G2A and G2B active low ?G1 active high ?These inputs must be terminated in way or another ?These inputs enable the device

技术分享

技术分享

技术分享

技术分享

0-4 Harvard and von Neumann CPU Architectures

技术分享

技术分享

技术分享

技术分享

技术分享

一、Chapter 1

四、Chapter 4

1、分支语句集合

技术分享

技术分享

2、CCR register

技术分享

3、Show how the cpu would subtract 05from43.

这个时候需要考虑到补码,43H-05H=3EH,也就是0100 0011 - 0000 0101,这个时候减去这个数相当于加上这个数的反码,0100 0011 + 1111 1011 = 0011 1110

五、Chapter 5

5-1

技术分享

5-2 逻辑运算

技术分享

NEG 是2的补码

5-3

技术分享

本质是相减比较大小

技术分享

技术分享

5-4

技术分享

5-5

技术分享

技术分享

5-6

When is the overflow flag set?
?Either of the following conditions cause V = 1
1. There is a carry from Bit 6 to Bit 7 but no carry from Bit 7
2. There is a carry from Bit 7 but no carry from Bit 6 to Bit 7

?Note in either case we do not have a carry from both

hcs12 microcontroller 笔记

标签:比较   generate   addclass   pre   diff   类型   mina   require   frame   

原文地址:http://blog.csdn.net/scythe666/article/details/52979189

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!