From: bernie Date: Mon, 11 Aug 2008 10:45:05 +0000 (+0000) Subject: CPU_PUSH_CALL_FRAME: Typo in DSP56k version. X-Git-Tag: 2.0.0~312 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=c5b08a9d703fc91f41d323011f77cf36eb27eeb2;p=bertos.git CPU_PUSH_CALL_FRAME: Typo in DSP56k version. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1622 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/cpu/frame.h b/bertos/cpu/frame.h index a17c8efa..0ecfaa49 100644 --- a/bertos/cpu/frame.h +++ b/bertos/cpu/frame.h @@ -160,7 +160,7 @@ * RTS discards SR while returning (it does not restore it). So we push * 0 to fake the same context. */ - #define CPU_PUSH_CALL_FRMAE(sp, func) \ + #define CPU_PUSH_CALL_FRAME(sp, func) \ do { \ CPU_PUSH_WORD((sp), (func)); \ CPU_PUSH_WORD((sp), 0x100); \