Files
mop3/kernel/device/sys/debugconsole.h
kamkow1 4c4c10c61e
Some checks failed
Build ISO image / build-and-deploy (push) Failing after 35s
Build documentation / build-and-deploy (push) Failing after 7s
organize device drivers into subdirectories
2026-03-31 15:56:30 +02:00

18 lines
365 B
C

#ifndef _KERNEL_DEVICE_DEBUGCONSOLE_H
#define _KERNEL_DEVICE_DEBUGCONSOLE_H
#include <device/def_device_op.h>
#include <libk/std.h>
#include <proc/proc.h>
#include <proc/reschedule.h>
struct device;
DEFINE_DEVICE_OP (debugconsole_putstr);
DEFINE_DEVICE_INIT (debugconsole_init);
DEFINE_DEVICE_FINI (debugconsole_fini);
#endif // _KERNEL_DEVICE_DEBUGCONSOLE_H