URL
https://opencores.org/ocsvn/openmsp430/openmsp430/trunk
Subversion Repositories openmsp430
[/] [openmsp430/] [trunk/] [core/] [sim/] [rtl_sim/] [src/] [sing-op_push.s43] - Rev 85
Go to most recent revision | Compare with Previous | Blame | View Log
/*===========================================================================*//* Copyright (C) 2001 Authors *//* *//* This source file may be used and distributed without restriction provided *//* that this copyright statement is not removed from the file and that any *//* derivative work contains the original copyright notice and the associated *//* disclaimer. *//* *//* This source file is free software; you can redistribute it and/or modify *//* it under the terms of the GNU Lesser General Public License as published *//* by the Free Software Foundation; either version 2.1 of the License, or *//* (at your option) any later version. *//* *//* This source is distributed in the hope that it will be useful, but WITHOUT*//* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or *//* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public *//* License for more details. *//* *//* You should have received a copy of the GNU Lesser General Public License *//* along with this source; if not, write to the Free Software Foundation, *//* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *//* *//*===========================================================================*//* SINGLE-OPERAND ARITHMETIC: PUSH INSTRUCTION *//*---------------------------------------------------------------------------*//* Test the PUSH instruction. *//* *//* Author(s): *//* - Olivier Girard, olgirard@gmail.com *//* *//*---------------------------------------------------------------------------*//* $Rev: 19 $ *//* $LastChangedBy: olivier.girard $ *//* $LastChangedDate: 2009-08-04 23:47:15 +0200 (Tue, 04 Aug 2009) $ *//*===========================================================================*/.global mainmain:/* -------------- TEST INSTRUCTION IN WORD MODE ------------------- */# Initialization#------------------------mov #0x0050, r4 ;# Initialize RAMmov #0x0200, r5clear_mem_loop:clr 0(r5)incd r5dec r4jnz clear_mem_loopmov #0x0252, r1 ;# Initialize stack pointermov #0x1000, r15# Addressing mode: Rn#------------------------mov #0x7524, r4mov #0x5555, &0x0300push r4 ;# PUSH (r4=0x7524 => @=0x0250)mov #0x1cb6, r6mov #0x5555, &0x0300push r6 ;# PUSH (r6=0x1cb6 => @=0x024E)mov #0x2000, r15# Addressing mode: @Rn#------------------------mov #0x0212, r4mov #0x1234, &0x0212mov #0x5555, &0x0300push @r4 ;# PUSH (0x1234 => @=0x024C)mov #0x0214, r6mov #0x5678, &0x0214mov #0x5555, &0x0300push @r6 ;# PUSH (0x5678 => @=0x024A)mov #0x3000, r15# Addressing mode: @Rn+#------------------------mov #0x0216, r4mov #0x9abc, &0x0216mov #0x5555, &0x0300push @r4+ ;# PUSH (0x9abc => @=0x0248)mov #0xdef0, &0x0218mov #0x5555, &0x0300push @r4+ ;# PUSH (0xdef0 => @=0x0246)mov #0x4000, r15# Addressing mode: X(Rn)#------------------------mov #0x0200, r4mov #0x0fed, &0x021Amov #0x5555, &0x0300push 26(r4) ;# PUSH (0x0fed => @=0x0244)mov #0xcba9, &0x021Cmov #0x5555, &0x0300push 28(r4) ;# PUSH (0xcba9 => @=0x0242)mov #0x5000, r15# Addressing mode: EDE#------------------------.set EDE_21E, (__data_start+0x001E).set EDE_220, (__data_start+0x0020)mov #0x0200, r4mov #0x8765, &0x021Emov #0x5555, &0x0300push EDE_21E ;# PUSH (0x8765 => @=0x0240)mov #0x4321, &0x0220mov #0x5555, &0x0300push EDE_220 ;# PUSH (0x4321 => @=0x023E)mov #0x6000, r15# Addressing mode: &EDE#------------------------.set aEDE_222, 0x0222.set aEDE_224, 0x0224mov #0x0200, r4mov #0x1f2e, &0x0222mov #0x5555, &0x0300push &aEDE_222 ;# PUSH (0x1f2e => @=0x023C)mov #0x3d4c, &0x0224mov #0x5555, &0x0300push &aEDE_224 ;# PUSH (0x3d4c => @=0x023A)mov #0x7000, r15# Addressing mode: #N#------------------------mov #0x5555, &0x0300push #0x71c8 ;# PUSH (0x71c8 => @=0x0238)mov #0x5555, &0x0300push #0x178c ;# PUSH (0x178c => @=0x0236)mov #0x7001, r15/* -------------- TEST INSTRUCTION IN BYTE MODE ------------------- */# Initialization#------------------------mov #0x0252, r1 ;# Initialize stack pointermov #0x8000, r15# Addressing mode: Rn#------------------------mov #0x1fe2, r4mov #0x5555, &0x0300push.b r4 ;# PUSH (r4=0xe2 => @=0x0250)mov #0x3dc4, r6mov #0x5555, &0x0300push.b r6 ;# PUSH (r6=0xc4 => @=0x024E)mov #0x9000, r15# Addressing mode: @Rn#------------------------mov #0x0212, r4mov #0x5ba6, &0x0212mov #0x5555, &0x0300push.b @r4 ;# PUSH (0xa6 => @=0x024C)mov #0x0215, r6mov #0x7988, &0x0214mov #0x5555, &0x0300push.b @r6 ;# PUSH (0x79 => @=0x024A)mov #0xA000, r15# Addressing mode: @Rn+#------------------------mov #0x0216, r4mov #0x976a, &0x0216mov #0x5555, &0x0300push.b @r4+ ;# PUSH (0x6a => @=0x0248)mov #0x5555, &0x0300push.b @r4+ ;# PUSH (0x97 => @=0x0246)mov #0xB000, r15# Addressing mode: X(Rn)#------------------------mov #0x0200, r4mov #0xb54c, &0x021Amov #0x5555, &0x0300push.b 26(r4) ;# PUSH (0x4c => @=0x0244)mov #0xc32d, &0x021Cmov #0x5555, &0x0300push.b 29(r4) ;# PUSH (0xc3 => @=0x0242)mov #0xC000, r15# Addressing mode: EDE#------------------------.set EDE_B_21E, (__data_start+0x001E).set EDE_B_221, (__data_start+0x0021)mov #0x0200, r4mov #0xd10e, &0x021Emov #0x5555, &0x0300push.b EDE_B_21E ;# PUSH (0x0e => @=0x0240)mov #0xfed0, &0x0220mov #0x5555, &0x0300push.b EDE_B_221 ;# PUSH (0xfe => @=0x023E)mov #0xD000, r15# Addressing mode: &EDE#------------------------.set aEDE_B_222, 0x0222.set aEDE_B_225, 0x0225mov #0x0200, r4mov #0x1bc2, &0x0222mov #0x5555, &0x0300push.b &aEDE_B_222 ;# PUSH (0xc2 => @=0x023C)mov #0x3ba4, &0x0224mov #0x5555, &0x0300push.b &aEDE_B_225 ;# PUSH (0x3b => @=0x023A)mov #0xE000, r15# Addressing mode: #N#------------------------mov #0x5555, &0x0300push.b #0x82d9 ;# PUSH (0xd9 => @=0x0238)mov #0x5555, &0x0300push.b #0x288d ;# PUSH (0x8d => @=0x0236)mov #0xF000, r15/* ---------------------- END OF TEST --------------- */end_of_test:nopbr #0xffff/* ---------------------- INTERRUPT VECTORS --------------- */.section .vectors, "a".word end_of_test ; Interrupt 0 (lowest priority) <unused>.word end_of_test ; Interrupt 1 <unused>.word end_of_test ; Interrupt 2 <unused>.word end_of_test ; Interrupt 3 <unused>.word end_of_test ; Interrupt 4 <unused>.word end_of_test ; Interrupt 5 <unused>.word end_of_test ; Interrupt 6 <unused>.word end_of_test ; Interrupt 7 <unused>.word end_of_test ; Interrupt 8 <unused>.word end_of_test ; Interrupt 9 <unused>.word end_of_test ; Interrupt 10 Watchdog timer.word end_of_test ; Interrupt 11 <unused>.word end_of_test ; Interrupt 12 <unused>.word end_of_test ; Interrupt 13 <unused>.word end_of_test ; Interrupt 14 NMI.word main ; Interrupt 15 (highest priority) RESET
Go to most recent revision | Compare with Previous | Blame | View Log
