tinyphy.inc

来自「maxII16_cpu,altera的maxII系列的16位cpu」· INC 代码 · 共 24 行

INC
24
字号
#include "tinyset.inc"
#include "tinymacro.inc"

    //////////////////////////////////////////////////////////////////////
    codestart = 0x0000;
    codeend = 0x01ff;
    memstart = 0x8000;
    memend = 0xffff;
    stackstart = memend - 0x00ff;
    mem = codestart;

    led = 0x0200;

    temp = 0x0208;

    lcd_control = 0x0600;
    lcd_data = 0x0601;

    uart_base = 0x0800;
    uart_busy_bit = 0x01;
    uart_biterror_bit = 0x02;
    uart_char_bit = 0x04;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?