Make it so mapping files are used and then reapplied.
[SquirrelJME.git] / modules / cldc-compact / src / main / java / cc / squirreljme / jvm / SupervisorPropertyIndex.java
blobfc387372792b3dacf22a9cba54eb2b72f6dc3aae
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 GNU General Public License v3+, or later.
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 =