2021-01-29 19:17:59 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2021-01-29 19:35:59 +00:00
|
|
|
/*
|
2021-02-08 22:32:22 +00:00
|
|
|
Copyright (u) 2021 Devine Lu Linvega
|
2021-01-29 19:17:59 +00:00
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software for any
|
|
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
WITH REGARD TO THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2021-02-08 22:18:01 +00:00
|
|
|
#include "uxn.h"
|
|
|
|
|
|
|
|
#pragma mark - Operations
|
|
|
|
|
|
|
|
/* clang-format off */
|
2021-02-11 18:34:31 +00:00
|
|
|
void setflag(Uint8 *a, char flag, int b) { if(b) *a |= flag; else *a &= (~flag); }
|
|
|
|
int getflag(Uint8 *a, char flag) { return *a & flag; }
|
2021-02-27 00:38:20 +00:00
|
|
|
Uint8 devpoke8(Uxn *u, Uint8 id, Uint8 b0, Uint8 b1){ return id < u->devices ? u->dev[id].poke(u->ram.dat, 0xff00 + id * 0x10, b0, b1) : b1; }
|
|
|
|
Uint8 devpeek8(Uxn *u, Uint8 id, Uint8 b0, Uint8 b1){ return id < u->devices ? u->dev[id].peek(u->ram.dat, 0xff00 + id * 0x10, b0, b1) : b1; }
|
|
|
|
void mempoke8(Uxn *u, Uint16 a, Uint8 b) { u->ram.dat[a] = a >= 0xff00 ? devpoke8(u, (a & 0xff) >> 4, a & 0xf, b) : b; }
|
2021-02-26 18:16:35 +00:00
|
|
|
Uint8 mempeek8(Uxn *u, Uint16 a) { return a >= 0xff00 ? devpeek8(u, (a & 0xff) >> 4, a & 0xf, u->ram.dat[a]) : u->ram.dat[a]; }
|
|
|
|
void mempoke16(Uxn *u, Uint16 a, Uint16 b) { mempoke8(u, a, b >> 8); mempoke8(u, a + 1, b); }
|
|
|
|
Uint16 mempeek16(Uxn *u, Uint16 a) { return (mempeek8(u, a) << 8) + mempeek8(u, a + 1); }
|
2021-02-15 18:12:44 +00:00
|
|
|
void push8(Stack *s, Uint8 a) { s->dat[s->ptr++] = a; }
|
|
|
|
Uint8 pop8(Stack *s) { return s->dat[--s->ptr]; }
|
|
|
|
Uint8 peek8(Stack *s, Uint8 a) { return s->dat[s->ptr - a - 1]; }
|
|
|
|
void push16(Stack *s, Uint16 a) { push8(s, a >> 8); push8(s, a); }
|
|
|
|
Uint16 pop16(Stack *s) { return pop8(s) + (pop8(s) << 8); }
|
|
|
|
Uint16 peek16(Stack *s, Uint8 a) { return peek8(s, a * 2) + (peek8(s, a * 2 + 1) << 8); }
|
2021-02-08 22:18:01 +00:00
|
|
|
/* I/O */
|
2021-02-14 19:51:36 +00:00
|
|
|
void op_brk(Uxn *u) { setflag(&u->status, FLAG_HALT, 1); }
|
2021-02-14 00:37:03 +00:00
|
|
|
void op_lit(Uxn *u) { u->literal += 1; }
|
2021-02-14 19:51:36 +00:00
|
|
|
void op_nop(Uxn *u) { printf("0x%02x \n", pop8(&u->wst)); fflush(stdout); }
|
2021-02-26 18:16:35 +00:00
|
|
|
void op_ldr(Uxn *u) { Uint16 a = pop16(&u->wst); push8(&u->wst, mempeek8(u, a)); }
|
|
|
|
void op_str(Uxn *u) { Uint16 a = pop16(&u->wst); Uint8 b = pop8(&u->wst); mempoke8(u, a, b); }
|
2021-02-08 22:18:01 +00:00
|
|
|
/* Logic */
|
2021-02-11 18:15:26 +00:00
|
|
|
void op_jmp(Uxn *u) { u->ram.ptr = pop16(&u->wst); }
|
2021-02-15 18:12:44 +00:00
|
|
|
void op_jsr(Uxn *u) { push16(&u->rst, u->ram.ptr); u->ram.ptr = pop16(&u->wst); }
|
|
|
|
void op_rts(Uxn *u) { u->ram.ptr = pop16(&u->rst); }
|
2021-02-15 04:23:00 +00:00
|
|
|
void op_and(Uxn *u) { Uint8 a = pop8(&u->wst), b = pop8(&u->wst); push8(&u->wst, b & a); }
|
|
|
|
void op_ora(Uxn *u) { Uint8 a = pop8(&u->wst), b = pop8(&u->wst); push8(&u->wst, b | a); }
|
|
|
|
void op_rol(Uxn *u) { Uint8 a = pop8(&u->wst), b = pop8(&u->wst); push8(&u->wst, b << a); }
|
|
|
|
void op_ror(Uxn *u) { Uint8 a = pop8(&u->wst), b = pop8(&u->wst); push8(&u->wst, b >> a); }
|
2021-02-08 22:18:01 +00:00
|
|
|
/* Stack */
|
2021-02-11 18:15:26 +00:00
|
|
|
void op_pop(Uxn *u) { pop8(&u->wst); }
|
2021-02-12 18:26:58 +00:00
|
|
|
void op_dup(Uxn *u) { push8(&u->wst, peek8(&u->wst, 0)); }
|
2021-02-11 18:15:26 +00:00
|
|
|
void op_swp(Uxn *u) { Uint8 b = pop8(&u->wst), a = pop8(&u->wst); push8(&u->wst, b); push8(&u->wst, a); }
|
2021-02-12 18:26:58 +00:00
|
|
|
void op_ovr(Uxn *u) { push8(&u->wst, peek8(&u->wst, 1)); }
|
2021-02-11 18:15:26 +00:00
|
|
|
void op_rot(Uxn *u) { Uint8 c = pop8(&u->wst), b = pop8(&u->wst), a = pop8(&u->wst); push8(&u->wst, b); push8(&u->wst, c); push8(&u->wst, a); }
|
2021-02-27 04:00:01 +00:00
|
|
|
void op_wsr(Uxn *u) { Uint8 a = pop8(&u->wst); push8(&u->rst, a); }
|
|
|
|
void op_rsw(Uxn *u) { Uint8 a = pop8(&u->rst); push8(&u->wst, a); }
|
2021-02-08 22:18:01 +00:00
|
|
|
/* Arithmetic */
|
2021-02-13 00:18:52 +00:00
|
|
|
void op_add(Uxn *u) { Uint8 a = pop8(&u->wst), b = pop8(&u->wst); push8(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint8)b + (Sint8)a : b + a); }
|
|
|
|
void op_sub(Uxn *u) { Uint8 a = pop8(&u->wst), b = pop8(&u->wst); push8(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint8)b - (Sint8)a : b - a); }
|
|
|
|
void op_mul(Uxn *u) { Uint8 a = pop8(&u->wst), b = pop8(&u->wst); push8(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint8)b * (Sint8)a : b * a); }
|
|
|
|
void op_div(Uxn *u) { Uint8 a = pop8(&u->wst), b = pop8(&u->wst); push8(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint8)b / (Sint8)a : b / a); }
|
|
|
|
void op_equ(Uxn *u) { Uint8 a = pop8(&u->wst), b = pop8(&u->wst); push8(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint8)b == (Sint8)a : b == a); }
|
|
|
|
void op_neq(Uxn *u) { Uint8 a = pop8(&u->wst), b = pop8(&u->wst); push8(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint8)b != (Sint8)a : b != a); }
|
|
|
|
void op_gth(Uxn *u) { Uint8 a = pop8(&u->wst), b = pop8(&u->wst); push8(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint8)b > (Sint8)a : b > a); }
|
|
|
|
void op_lth(Uxn *u) { Uint8 a = pop8(&u->wst), b = pop8(&u->wst); push8(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint8)b < (Sint8)a : b < a); }
|
2021-02-10 19:06:36 +00:00
|
|
|
/* --- */
|
2021-02-14 00:37:03 +00:00
|
|
|
void op_lit16(Uxn *u) { u->literal += 2; }
|
2021-02-12 18:26:58 +00:00
|
|
|
void op_nop16(Uxn *u) { printf("%04x\n", pop16(&u->wst)); }
|
2021-02-26 18:16:35 +00:00
|
|
|
void op_ldr16(Uxn *u) { Uint16 a = pop16(&u->wst); push16(&u->wst, mempeek16(u, a)); }
|
|
|
|
void op_str16(Uxn *u) { Uint16 a = pop16(&u->wst); Uint16 b = pop16(&u->wst); mempoke16(u, a, b); }
|
2021-02-15 04:23:00 +00:00
|
|
|
void op_and16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push16(&u->wst, b & a); }
|
|
|
|
void op_ora16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push16(&u->wst, b | a); }
|
|
|
|
void op_rol16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push16(&u->wst, b << a); }
|
|
|
|
void op_ror16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push16(&u->wst, b >> a); }
|
2021-02-08 22:18:01 +00:00
|
|
|
/* Stack(16-bits) */
|
2021-02-11 18:15:26 +00:00
|
|
|
void op_pop16(Uxn *u) { pop16(&u->wst); }
|
2021-02-12 18:26:58 +00:00
|
|
|
void op_dup16(Uxn *u) { push16(&u->wst, peek16(&u->wst, 0)); }
|
2021-02-11 18:15:26 +00:00
|
|
|
void op_swp16(Uxn *u) { Uint16 b = pop16(&u->wst), a = pop16(&u->wst); push16(&u->wst, b); push16(&u->wst, a); }
|
2021-02-12 18:26:58 +00:00
|
|
|
void op_ovr16(Uxn *u) { push16(&u->wst, peek16(&u->wst, 1)); }
|
2021-02-11 18:15:26 +00:00
|
|
|
void op_rot16(Uxn *u) { Uint16 c = pop16(&u->wst), b = pop16(&u->wst), a = pop16(&u->wst); push16(&u->wst, b); push16(&u->wst, c); push16(&u->wst, a); }
|
2021-02-27 04:00:01 +00:00
|
|
|
void op_wsr16(Uxn *u) { Uint16 a = pop16(&u->wst); push16(&u->rst, a); }
|
|
|
|
void op_rsw16(Uxn *u) { Uint16 a = pop16(&u->rst); push16(&u->wst, a); }
|
2021-02-08 22:18:01 +00:00
|
|
|
/* Arithmetic(16-bits) */
|
2021-02-13 02:57:04 +00:00
|
|
|
void op_add16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push16(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint16)b + (Sint16)a : b + a); }
|
|
|
|
void op_sub16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push16(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint16)b - (Sint16)a : b - a); }
|
|
|
|
void op_mul16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push16(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint16)b * (Sint16)a : b * a); }
|
|
|
|
void op_div16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push16(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint16)b / (Sint16)a : b / a); }
|
|
|
|
void op_equ16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push8(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint16)b == (Sint16)a : b == a); }
|
|
|
|
void op_neq16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push8(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint16)b != (Sint16)a : b != a); }
|
|
|
|
void op_gth16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push8(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint16)b > (Sint16)a : b > a); }
|
|
|
|
void op_lth16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push8(&u->wst, getflag(&u->status, FLAG_SIGN) ? (Sint16)b < (Sint16)a : b < a); }
|
2021-02-08 22:32:22 +00:00
|
|
|
|
|
|
|
void (*ops[])(Uxn *u) = {
|
2021-02-27 03:46:56 +00:00
|
|
|
op_brk, op_nop, op_lit, op_nop, op_nop, op_nop, op_ldr, op_str,
|
2021-02-15 04:23:00 +00:00
|
|
|
op_jmp, op_jsr, op_nop, op_rts, op_and, op_ora, op_rol, op_ror,
|
2021-02-27 04:00:01 +00:00
|
|
|
op_pop, op_dup, op_swp, op_ovr, op_rot, op_nop, op_wsr, op_rsw,
|
2021-02-08 22:18:01 +00:00
|
|
|
op_add, op_sub, op_mul, op_div, op_equ, op_neq, op_gth, op_lth,
|
2021-02-10 19:06:36 +00:00
|
|
|
/* 16-bit */
|
2021-02-27 03:46:56 +00:00
|
|
|
op_brk, op_nop16, op_lit16, op_nop, op_nop, op_nop, op_ldr16, op_str16,
|
2021-02-15 18:12:44 +00:00
|
|
|
op_jmp, op_jsr, op_nop, op_rts, op_and16, op_ora16, op_rol16, op_ror16,
|
2021-02-15 04:23:00 +00:00
|
|
|
op_pop16, op_dup16, op_swp16, op_ovr16, op_rot16, op_wsr16, op_rsw16, op_nop,
|
2021-02-08 22:18:01 +00:00
|
|
|
op_add16, op_sub16, op_mul16, op_div16, op_equ16, op_neq16, op_gth16, op_lth16
|
|
|
|
};
|
|
|
|
|
|
|
|
Uint8 opr[][2] = {
|
2021-02-10 19:06:36 +00:00
|
|
|
{0,0}, {0,0}, {0,0}, {0,0}, {1,1}, {1,0}, {2,1}, {3,0},
|
2021-02-15 04:23:00 +00:00
|
|
|
{2,0}, {2,0}, {0,0}, {0,0}, {2,1}, {2,1}, {2,1}, {2,1},
|
|
|
|
{1,0}, {1,2}, {2,2}, {2,3}, {3,3}, {1,0}, {0,1}, {2,1},
|
2021-02-08 22:18:01 +00:00
|
|
|
{2,1}, {2,1}, {2,1}, {2,1}, {2,1}, {2,1}, {2,1}, {2,1},
|
2021-02-10 19:06:36 +00:00
|
|
|
/* 16-bit */
|
2021-02-25 04:28:20 +00:00
|
|
|
{0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {2,2}, {4,0}, /* TODO */
|
2021-02-10 19:06:36 +00:00
|
|
|
{0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, /* TODO */
|
2021-02-15 04:23:00 +00:00
|
|
|
{0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {1,0}, {0,1}, {0,0}, /* TODO */
|
2021-02-13 02:57:04 +00:00
|
|
|
{4,2}, {4,2}, {4,2}, {4,2}, {4,2}, {4,2}, {4,2}, {4,2}
|
2021-02-08 22:18:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* clang-format on */
|
|
|
|
|
2021-02-27 16:18:57 +00:00
|
|
|
#pragma mark - Core
|
|
|
|
|
2021-02-08 22:18:01 +00:00
|
|
|
int
|
2021-02-08 23:46:52 +00:00
|
|
|
haltuxn(Uxn *u, char *name, int id)
|
2021-02-08 22:18:01 +00:00
|
|
|
{
|
2021-02-15 18:12:44 +00:00
|
|
|
printf("Halted: %s#%04x, at 0x%04x\n", name, id, u->counter);
|
2021-02-15 22:42:53 +00:00
|
|
|
op_nop(u);
|
2021-02-08 22:18:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2021-02-08 23:46:52 +00:00
|
|
|
lituxn(Uxn *u, Uint8 instr)
|
2021-02-08 22:18:01 +00:00
|
|
|
{
|
2021-02-08 22:32:22 +00:00
|
|
|
if(u->wst.ptr >= 255)
|
2021-02-08 23:46:52 +00:00
|
|
|
return haltuxn(u, "Stack overflow", instr);
|
2021-02-11 18:15:26 +00:00
|
|
|
push8(&u->wst, instr);
|
2021-02-08 22:32:22 +00:00
|
|
|
u->literal--;
|
2021-02-08 22:18:01 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2021-02-08 23:46:52 +00:00
|
|
|
opcuxn(Uxn *u, Uint8 instr)
|
2021-02-08 22:18:01 +00:00
|
|
|
{
|
|
|
|
Uint8 op = instr & 0x1f;
|
2021-02-08 22:32:22 +00:00
|
|
|
setflag(&u->status, FLAG_SHORT, (instr >> 5) & 1);
|
2021-02-13 00:18:52 +00:00
|
|
|
setflag(&u->status, FLAG_SIGN, (instr >> 6) & 1);
|
2021-02-08 22:32:22 +00:00
|
|
|
setflag(&u->status, FLAG_COND, (instr >> 7) & 1);
|
|
|
|
if(getflag(&u->status, FLAG_SHORT))
|
2021-02-10 19:06:36 +00:00
|
|
|
op += 32;
|
2021-02-08 22:32:22 +00:00
|
|
|
if(u->wst.ptr < opr[op][0])
|
2021-02-08 23:46:52 +00:00
|
|
|
return haltuxn(u, "Stack underflow", op);
|
2021-02-08 22:32:22 +00:00
|
|
|
if(u->wst.ptr + opr[op][1] - opr[op][0] >= 255)
|
2021-02-08 23:46:52 +00:00
|
|
|
return haltuxn(u, "Stack overflow", instr);
|
2021-02-11 18:15:26 +00:00
|
|
|
if(!getflag(&u->status, FLAG_COND) || (getflag(&u->status, FLAG_COND) && pop8(&u->wst)))
|
2021-02-08 22:32:22 +00:00
|
|
|
(*ops[op])(u);
|
2021-02-08 22:18:01 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-02-09 05:59:46 +00:00
|
|
|
int
|
2021-02-09 17:00:27 +00:00
|
|
|
stepuxn(Uxn *u, Uint8 instr)
|
2021-02-09 05:59:46 +00:00
|
|
|
{
|
|
|
|
if(u->literal > 0)
|
|
|
|
return lituxn(u, instr);
|
|
|
|
else
|
|
|
|
return opcuxn(u, instr);
|
|
|
|
}
|
|
|
|
|
2021-02-08 22:18:01 +00:00
|
|
|
int
|
2021-02-08 23:46:52 +00:00
|
|
|
evaluxn(Uxn *u, Uint16 vec)
|
2021-02-08 22:18:01 +00:00
|
|
|
{
|
2021-02-10 19:59:26 +00:00
|
|
|
u->literal = 0;
|
2021-02-08 23:46:52 +00:00
|
|
|
u->ram.ptr = vec;
|
|
|
|
setflag(&u->status, FLAG_HALT, 0);
|
2021-02-09 17:00:27 +00:00
|
|
|
while(!(u->status & FLAG_HALT)) {
|
|
|
|
Uint8 instr = u->ram.dat[u->ram.ptr++];
|
|
|
|
if(!stepuxn(u, instr))
|
|
|
|
return 0;
|
|
|
|
u->counter++;
|
|
|
|
}
|
2021-02-08 22:18:01 +00:00
|
|
|
return 1;
|
2021-02-08 22:08:58 +00:00
|
|
|
}
|
|
|
|
|
2021-01-29 19:17:59 +00:00
|
|
|
int
|
2021-02-08 23:46:52 +00:00
|
|
|
bootuxn(Uxn *u)
|
2021-01-29 19:17:59 +00:00
|
|
|
{
|
2021-02-09 05:59:46 +00:00
|
|
|
size_t i;
|
2021-02-09 17:05:01 +00:00
|
|
|
char *cptr = (char *)&u;
|
2021-02-09 05:59:46 +00:00
|
|
|
for(i = 0; i < sizeof u; i++)
|
|
|
|
cptr[i] = 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
loaduxn(Uxn *u, char *filepath)
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
if(!(f = fopen(filepath, "rb")))
|
2021-02-15 18:12:44 +00:00
|
|
|
return haltuxn(u, "Missing input rom.", 0);
|
2021-02-09 05:59:46 +00:00
|
|
|
fread(u->ram.dat, sizeof(u->ram.dat), 1, f);
|
2021-02-28 19:17:32 +00:00
|
|
|
u->vreset = mempeek16(u, 0xfff0);
|
|
|
|
u->vframe = mempeek16(u, 0xfff2);
|
|
|
|
u->verror = mempeek16(u, 0xfff4);
|
2021-02-09 05:59:46 +00:00
|
|
|
printf("Uxn loaded[%s] vrst:%04x vfrm:%04x verr:%04x.\n",
|
|
|
|
filepath,
|
|
|
|
u->vreset,
|
|
|
|
u->vframe,
|
|
|
|
u->verror);
|
2021-02-08 22:18:01 +00:00
|
|
|
return 1;
|
2021-01-29 19:17:59 +00:00
|
|
|
}
|
2021-02-08 23:46:52 +00:00
|
|
|
|
2021-02-10 01:22:52 +00:00
|
|
|
Device *
|
2021-02-27 03:46:56 +00:00
|
|
|
portuxn(Uxn *u, char *name, Uint8 (*pefn)(Uint8 *m, Uint16 ptr, Uint8 b0, Uint8 b1), Uint8 (*pofn)(Uint8 *m, Uint16 ptr, Uint8 b0, Uint8 b1))
|
2021-02-09 05:59:46 +00:00
|
|
|
{
|
|
|
|
Device *d = &u->dev[u->devices++];
|
2021-02-27 03:46:56 +00:00
|
|
|
d->addr = 0xff00 + (u->devices - 1) * 0x10;
|
2021-02-26 22:36:48 +00:00
|
|
|
d->peek = pefn;
|
|
|
|
d->poke = pofn;
|
2021-02-27 03:46:56 +00:00
|
|
|
printf("Device #%d: %s, at 0x%04x \n", u->devices - 1, name, d->addr);
|
2021-02-10 01:22:52 +00:00
|
|
|
return d;
|
2021-02-09 05:59:46 +00:00
|
|
|
}
|