view arch/svcint.h @ 96:a480d02a10c8

merge
author Jonathan Pevarnek <pevarnj@gmail.com>
date Sat, 14 May 2011 12:54:47 -0400
parents e7b9148156c4
children
line wrap: on
line source

#ifndef __SVCINT_H
#define __SVCINT_H

#define _PSA_OLD_SVC_PSW	0x140
#define _PSA_NEW_SVC_PSW	0x1c0

#define _PSA_SVC_ID	0x88
#define _PSA_GPRS	0x200
#define _PSA_PSW_TMP	0x280

#define PSA_OLD_SVC_PSW		((struct psw*) _PSA_OLD_SVC_PSW)
#define PSA_NEW_SVC_PSW		((struct psw*) _PSA_NEW_SVC_PSW)

#define PSA_GPRS	((u64*) _PSA_GPRS)
#define PSA_PSW_TMP	((struct psw*) _PSA_PSW_TMP)

#endif