Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:23:51

0001 /*
0002  *  System call support for simulator in gdb.
0003  *
0004  *  COPYRIGHT (c) 2011 Anthony Green <green@moxielogic.com>
0005  */
0006 
0007 #define SYS_write       5
0008 
0009         .section .text
0010         .align 2
0011         .global _sys_write
0012 _sys_write:
0013         swi     SYS_write
0014         ret
0015         .end