uKernel/src/arch/i386/intr.S

23 lines
343 B
ArmAsm

/* $Id$ */
/* Copyright (c) 2018-2019 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS uKernel */
/* functions */
.section .text
/* intr_disable */
.global intr_disable
.type intr_disable, @function
intr_disable:
cli
ret
/* intr_enable */
.global intr_enable
.type intr_enable, @function
intr_enable:
sti
ret