# 第 1 章：基础知识

## 检测点 1.1

**（1）1个 CPU 的寻址能力为 8 KB，那么它的地址总线的宽度为*****\_\_\_\_\_*****。**

答案： $$\rm log\_2 (2^3\cdot 2^{10})= \bf 13$$&#x20;

**（2）1 KB 的存储器有\_\_\_\_\_个存储单元。存储单元的编号从\_\_\_\_到\_\_\_\_。**

答案：**1024；0；1023**

**（3）1 KB 的存储器可以存储\_\_\_\_\_个 bit，\_\_\_\_\_个 Byte。**

答案： $$2^{10}\cdot 2^3 = 2^{13}=\bf 8192$$；$$2^{10}=\bf 1024$$

**（4）1 GB、1 MB、1 KB 分别是\_\_\_、\_\_\_、\_\_\_ Byte。**

答案：$$\bf2^{30}$$；$$\bf 2^{20}$$；$$\bf 2^{10}$$

**（5）8080、8088、80286、80386 的地址总线宽度分别为 16 根、20 根、24 根、32 根，则它们的寻址能力分别为\_\_\_\_（KB）、\_\_\_\_（MB）、\_\_\_\_（MB）、\_\_\_\_（GB）。**

答案： $$2^{16}/2^{10}=\bf 64$$ ；$$2^{20}/2^{20}=\bf 1$$；$$2^{24}/2^{20}=\bf 16$$；$$2^{32}/2^{30}=\bf4$$

**（6）8080、8088、8086、80286、80386 的数据总线宽度分别为 8 根、8 根、16 根、16 根、32 根。则它们一次可以传送的数据为：\_\_\_\_（B）、\_\_\_\_（B）、\_\_\_\_（B）、\_\_\_\_（B）、\_\_\_\_（B）。**

答案：**1；1；2；2；4**

**（7）从内存中读取 1024 字节的数据，8086 至少要读取\_\_\_\_次，80386 至少要读取\_\_\_\_次。**

答案： $$1024/2=\bf 512$$；$$1024/4=\bf 256$$

（8）**在存储器中，数据和程序以\_\_\_\_形式存放。**

答案：**二进制**


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://hansimov.gitbook.io/asm-lang/solutions/ch01-basics.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
