This website works better with JavaScript
Главная
Обзор
Помощь
Вход
DragonOS-Community
/
DragonOS
зеркало из
https://github.com/DragonOS-Community/DragonOS.git
Следить
2
В избранное
0
Ответвить
0
Файлы
Задачи
0
Вики
Дерево:
ae52d9c2d2
Ветки
Метки
feat-dynamic-link
feat-network-rebuild
fix-stack-overflow
master
oscomp
V0.1.10
V0.1.9
V0.1.8
V0.1.7
V0.1.6
V0.1.5
V0.1.4
V0.1.3
V0.1.2
V0.1.1
V0.1.0
DragonOS
/
kernel
/
common
/
asm.h
asm.h
110 B
История
Исходник
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#ifndef __ASM__
#define __ASM__
#define ENTRY(name)\
.global name; \
name:
#endif