Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
d82f1eba
Commit
d82f1eba
authored
7 years ago
by
Josarn
Browse files
Options
Downloads
Patches
Plain Diff
atmega: add last instruction print
Signed-off-by:
Josua Arndt
<
josuaarndt@live.de
>
parent
db55004d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cpu/atmega_common/include/cpu.h
+19
-1
19 additions, 1 deletion
cpu/atmega_common/include/cpu.h
with
19 additions
and
1 deletion
cpu/atmega_common/include/cpu.h
+
19
−
1
View file @
d82f1eba
/*
/*
* Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de>
* Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de>
* 2014 Freie Universität Berlin, Hinnerk van Bruinehsen
* 2014 Freie Universität Berlin, Hinnerk van Bruinehsen
* 2018 RWTH Aachen, Josua Arndt <jarndt@ias.rwth-aachen.de>
*
*
* This file is subject to the terms and conditions of the GNU Lesser
* 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
* General Public License v2.1. See the file LICENSE in the top level
...
@@ -22,6 +23,8 @@
...
@@ -22,6 +23,8 @@
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
* @author Hinnerk van Bruinehsen <h.v.bruinehsen@fu-berlin.de>
* @author Hinnerk van Bruinehsen <h.v.bruinehsen@fu-berlin.de>
* @author Kaspar Schleiser <kaspar@schleiser.de>
* @author Kaspar Schleiser <kaspar@schleiser.de>
* @author Josua Arndt <jarndt@ias.rwth-aachen.de>
*
*/
*/
#ifndef CPU_H
#ifndef CPU_H
...
@@ -76,7 +79,22 @@ void cpu_init(void);
...
@@ -76,7 +79,22 @@ void cpu_init(void);
*/
*/
static
inline
void
cpu_print_last_instruction
(
void
)
static
inline
void
cpu_print_last_instruction
(
void
)
{
{
puts
(
"n/a"
);
uint8_t
hi
;
uint8_t
lo
;
uint16_t
ptr
;
__asm__
volatile
(
"in r0, __SP_H__;
\n\t
"
"mov %0, r0
\n\t
"
:
"=g"
(
hi
)
:
:
"r0"
);
__asm__
volatile
(
"in r0, __SP_L__;
\n\t
"
"mov %0, r0
\n\t
"
:
"=g"
(
lo
)
:
:
"r0"
);
ptr
=
hi
<<
8
|
lo
;
printf
(
"Stack Pointer: 0x%04x
\n
"
,
ptr
);
}
}
#ifdef __cplusplus
#ifdef __cplusplus
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment