// ################################################################################################# // # << NEORV32 - "Hello World" Demo Program >> # // # ********************************************************************************************* # // # BSD 3-Clause License # // # # // # Copyright (c) 2022, Stephan Nolting. All rights reserved. # // # # // # Redistribution and use in source and binary forms, with or without modification, are # // # permitted provided that the following conditions are met: # // # # // # 1. Redistributions of source code must retain the above copyright notice, this list of # // # conditions and the following disclaimer. # // # # // # 2. Redistributions in binary form must reproduce the above copyright notice, this list of # // # conditions and the following disclaimer in the documentation and/or other materials # // # provided with the distribution. # // # # // # 3. Neither the name of the copyright holder nor the names of its contributors may be used to # // # endorse or promote products derived from this software without specific prior written # // # permission. # // # # // # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS # // # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF # // # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE # // # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, # // # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE # // # GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED # // # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING # // # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED # // # OF THE POSSIBILITY OF SUCH DAMAGE. # // # ********************************************************************************************* # // # The NEORV32 Processor - https://github.com/stnolting/neorv32 (c) Stephan Nolting # // ################################################################################################# /**********************************************************************//** * @file hello_world/main.c * @author Stephan Nolting * @brief Classic 'hello world' demo program. **************************************************************************/ #include /**********************************************************************//** * @name User configuration **************************************************************************/ /**@{*/ /** UART BAUD rate */ #define BAUD_RATE 19200 /**@}*/ void fn_mem(uint32_t N, uint32_t *y){ for(uint32_t i=0; i show message if isa mismatch // say hello neorv32_uart0_puts("Memory management cycles measure :\n"); neorv32_uart0_printf("NEORV32: Freq = %u\n",NEORV32_SYSINFO.CLK); uint32_t y[1024]; uint32_t x; for(n_max=0; n_max<1024+1; n_max+=128){ Begin_Time = (long)neorv32_mtime_get_time(); for(uint32_t j=0; j<10; j++){ fn_mem(n_max, y); } End_Time = (long)neorv32_mtime_get_time(); User_Time = End_Time - Begin_Time; neorv32_uart0_printf("NEORV32: Memory mean cycles N = %u : %u\n",n_max, (uint32_t)User_Time/10); Begin_Time = (long)neorv32_mtime_get_time(); for(uint32_t j=0; j<10; j++){ fn_copy(n_max, &x, y); } End_Time = (long)neorv32_mtime_get_time(); User_Time = End_Time - Begin_Time; neorv32_uart0_printf("NEORV32: Copy mean cycles N = %u : %u\n",n_max, (uint32_t)User_Time/10); } neorv32_uart0_puts("end:\n"); return 0; }