aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/common.asm
blob: 87444dbb456ff05a0b1e55543e82e7ad6d8c5578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
;; common.asm
%ifndef COMMON_ASM
%define COMMON_ASM

;; Real mode constants
%define READ_SECTORS_NUM 16
%define BOOT_LOAD_ADDR 0x7c00
%define STAGE2_ADDR 0x7e00
%define SECTOR_SIZE 512
%define STACK_ADDR 0x9c00

;; Mostly kernel and protected mode constants
%define VGA_COLOR_BLACK 0
%define VGA_COLOR_GREEN 2
%define VGA_COLOR_RED 4
%define VGA_WHITE_ON_BLACK 0x0f
%define VGA_BUFFER 0xb8000
%define VGA_SCREEN_X 80
%define VGA_SCREEN_Y 25
%define VGA_SCREEN (VGA_SCREEN_X*VGA_SCREEN_Y)

;; Forth-specific constants
%define FS_DATA_STACK 0x80000
%define FS_RET_STACK 0x90000
%define FS_DICT_BASE 0xa0000

%endif