mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
44 lines
893 B
C
44 lines
893 B
C
/*
|
|
* Copyright (C) 2023 Bennet Blischke <bennet.blischke@haw-hamburg.de>
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup tests
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Test application for the pmp_noexec_ram pseudo-module
|
|
*
|
|
* @author Sören Tempel <tempel@uni-bremen.de>
|
|
* @author Bennet Blischke <bennet.blischke@haw-hamburg.de>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
#include "cpu.h"
|
|
#include "pmp.h"
|
|
|
|
#define JMPBUF_SIZE 3
|
|
|
|
int main(void)
|
|
{
|
|
uint32_t buf[JMPBUF_SIZE];
|
|
|
|
/* Fill the buffer with invalid instructions */
|
|
for (unsigned i = 0; i < JMPBUF_SIZE; i++) {
|
|
buf[i] = UINT32_MAX;
|
|
}
|
|
|
|
puts("Attempting to jump to stack buffer ...\n");
|
|
__asm__ volatile ("jr %0" :: "r" ((uint8_t*)&buf));
|
|
|
|
return 0;
|
|
}
|