2024-07-08 05:08:08 +02:00
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
//
|
2024-07-12 08:24:54 +02:00
|
|
|
|
// include/kernel/util/delay.k
|
|
|
|
|
// 65X-DOS Kernel: delay() function
|
2024-07-08 05:08:08 +02:00
|
|
|
|
//
|
|
|
|
|
// Copyright © 2024 Kyle J Cardoza <Kyle.Cardoza@icloud.com>
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2024-07-12 08:24:54 +02:00
|
|
|
|
void delay(uint16_t count);
|