//! Clock module providing system clock functionality
//!
//! This module provides functions to retrieve the system clock cycle.
pub use crategetClockCycleRB;
/// Function to get the current system clock cycle
///
/// # Returns
/// * `u32` - The current clock cycle
///
/// # Examples
/// ```
/// use mu_lib::clock::get_clock_cycle;
///
/// let cycle = get_clock_cycle();
/// ```