summaryrefslogtreecommitdiffhomepage
path: root/src/neboot-print-name.c
blob: 5ffae24be0b79235829fa4e3e397353d1a208027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Distributed under the Apache Software License, Version 2.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.apache.org/licenses/LICENSE-2.0)
// Official repository: https://github.com/ne-foss-org/neboot

#include <include/boot.h>

/// @brief Print firmware name.
/// @param
void nb_print_name(void) {
#ifdef __COMPILE_POWERPC__
  nb_put_string(">> NeBoot for POWERPC.\r\n");
#endif  // __COMPILE_POWERPC__

#ifdef __COMPILE_ARM64__
  nb_put_string(">> NeBoot for ARM64.\r\n");
#endif  // __COMPILE_POWERPC__

#ifdef __COMPILE_AMD64__
  nb_put_string(">> NeBoot for AMD64.\r\n");
#endif  // __COMPILE_POWERPC__

#ifdef __COMPILE_RISCV__
  nb_put_string(">> NeBoot for RISC-V.\r\n");
#endif  // __COMPILE_POWERPC__
}