> For the complete documentation index, see [llms.txt](https://bite01.gitbook.io/ru-he-zhi-zuo-yi-tai-ji-suan-ji/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bite01.gitbook.io/ru-he-zhi-zuo-yi-tai-ji-suan-ji/6-0/6-3.md).

# JUMP指令

**汇编指令**：JUMP 目标目标指令地址

**功能描述**：强制指令跳转

**例子**：

```
JUMP 123   (解释：跳转到ROM地址123处接着执行下一条指令)
```

**ROM指令实现**：

```
直接把“目标指令地址”设置到ROM的D3~D0位里
```
