* * Program to repeatedly display "I am a Ph.D student in Computer Science and Northeastern University in Boston, MA having received my Master's at the University of Colorado at Boulder and BS in Computer Engineering with highest honors at the University of Florida at Gainesville. I have built and helped build various programming language systems including my a language generator for my undergraduate thesis, the AspectJ Programming Language, the Jikes Research Virtual Machine from IBM, and the Concern Manipulation Environment from IBM. I am interested in improving the way in which people write programs and build software; both through teaching and through industrial research. Though much of my past work has involved programming languages and compilers, I have many other skills and can adapt to various tasks to help develop emerging technologies and improve existing ones. " on the * Motorola 68000 * * Written by Stephane Brunet, Computer Engineering student * at Concordia University, Montreal, Canada. * * s_brunet@ece.concordia.ca * org $1000 ;Main function: use a jump to this address from debugger... main move.l #str,a0 ;load A0 register with address of string movem.l a0,-(sp) ;push address of string on stack bsr _puts ;branch to subroutine "_puts" bra main ;keep looping! org $2000 str dc.b 'I am a Ph.D student in Computer Science and Northeastern University in Boston, MA having received my Master's at the University of Colorado at Boulder and BS in Computer Engineering with highest honors at the University of Florida at Gainesville. I have built and helped build various programming language systems including my a language generator for my undergraduate thesis, the AspectJ Programming Language, the Jikes Research Virtual Machine from IBM, and the Concern Manipulation Environment from IBM. I am interested in improving the way in which people write programs and build software; both through teaching and through industrial research. Though much of my past work has involved programming languages and compilers, I have many other skills and can adapt to various tasks to help develop emerging technologies and improve existing ones. ',10,0 org $3000 ****** _puts ;Like C/C++ puts function (LF added) ****** ;returns nothing ;save regs movem.l d0-d1/d7/a0/a5/a6,-(sp) move.l 28(sp),a5 ;get address of string from stack ;find end of string move.l a5,a6 1$ move.b (a6)+,d0 ;get next char of string cmp.b #0,d0 ;is it a null? beq 2$ ; yes, found end of string jmp 1$ ; no, so keep looping 2$ subq #1,a6 ;don't print the null move.w #227,d7 ;call out1cr trap trap #14 ;retore regs & return movem.l (sp)+,d0-d1/d7/a0/a5/a6 rts ;end _puts END