Indentations break the feed.
[SquirrelJME.git] / modules / cldc-compact / src / main / java / cc / squirreljme / jvm / SupervisorPropertyIndex.java
blobc504e2b1a79bd16a58c98a9dbdf145107236f346
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc.squirreljme.jvm;
12 /**
13 * This indicates an index for a supervisor register which is controlled and
14 * only settable by the supervisor. It is used in system call handling and
15 * otherwise.
17 * @since 2019/10/04
19 public interface SupervisorPropertyIndex
21 /** The static field register of the task syscall handler. */
22 byte TASK_SYSCALL_STATIC_FIELD_POINTER =
25 /** The method pointer of the task syscall method. */
26 byte TASK_SYSCALL_METHOD_HANDLER =
29 /** The pool pointer of the task syscall method. */
30 byte TASK_SYSCALL_METHOD_POOL_POINTER =
33 /** The number of available properties. */
34 byte NUM_PROPERTIES =