mirror of
https://github.com/exoticorn/microw8.git
synced 2026-01-20 11:16:42 +01:00
Compare commits
8 Commits
v0.3.0
...
c83cb6713f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c83cb6713f | ||
| fb3fd5e8bb | |||
| b85f96b0bb | |||
| b69055b58d | |||
| 0878aa3f02 | |||
|
|
1d89ef8613 | ||
|
|
c7be8be2c4 | ||
|
|
d9f9500b76 |
1149
Cargo.lock
generated
1149
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uw8"
|
||||
version = "0.3.0"
|
||||
version = "0.3.1"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
@@ -11,7 +11,7 @@ native = ["wasmtime", "uw8-window", "cpal", "rubato" ]
|
||||
browser = ["warp", "tokio", "tokio-stream", "webbrowser"]
|
||||
|
||||
[dependencies]
|
||||
wasmtime = { version = "19.0.1", optional = true }
|
||||
wasmtime = { git = "https://github.com/bytecodealliance/wasmtime.git", rev = "0f48f939b9870036562ca02ff21253547a9f1a5c", optional = true }
|
||||
anyhow = "1"
|
||||
env_logger = "0.11.3"
|
||||
log = "0.4"
|
||||
|
||||
@@ -3,12 +3,14 @@ include "../include/microw8-api.cwa"
|
||||
export fn upd() {
|
||||
let i: i32;
|
||||
loop pixels {
|
||||
let inline t = time() * 63 as f32;
|
||||
let lazy x = (i % 320 - 160) as f32;
|
||||
let lazy y = (i / 320 - 120) as f32;
|
||||
let inline d = 40000 as f32 / sqrt(x * x + y * y);
|
||||
let inline u = atan2(x, y) * (512.0 / 3.141);
|
||||
let inline c = ((i32.trunc_sat_f32_s(d + t * 2 as f32) ^ i32.trunc_sat_f32_s(u + t)) & 255) >> 4;
|
||||
let inline t = 16!56;
|
||||
let inline x = (i % 320 - 160) as f32;
|
||||
let inline y = (i #/ 320 - 120) as f32;
|
||||
let inline d = 0xa000 as f32 / sqrt(x * x + y * y);
|
||||
let inline a = atan2(x, y) * 163_f; // (512 / pi)
|
||||
let inline u = i32.trunc_sat_f32_s(a) + t;
|
||||
let inline v = i32.trunc_sat_f32_s(d) + t * 2;
|
||||
let inline c = ((v ^ u) #/ 16) % 16;
|
||||
i?FRAMEBUFFER = c;
|
||||
|
||||
branch_if (i := i + 1) < 320*240: pixels;
|
||||
|
||||
@@ -21,7 +21,7 @@ loaded.
|
||||
00000-00040: user memory
|
||||
00040-00044: time since module start in ms
|
||||
00044-0004c: gamepad state
|
||||
0004c-00050: reserved
|
||||
0004c-00050: number of frames since module start
|
||||
00050-00070: sound data (synced to sound thread)
|
||||
00070-00078: reserved
|
||||
00078-12c78: frame buffer
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@ use std::sync::{mpsc, Arc, Mutex};
|
||||
use std::time::Duration;
|
||||
use std::{thread, time::Instant};
|
||||
|
||||
use anyhow::{anyhow, Result};
|
||||
use anyhow::{anyhow, bail, Result};
|
||||
use cpal::traits::*;
|
||||
use rubato::Resampler;
|
||||
use uw8_window::{Window, WindowConfig};
|
||||
@@ -27,6 +27,7 @@ struct UW8Instance {
|
||||
end_frame: TypedFunc<(), ()>,
|
||||
update: Option<TypedFunc<(), ()>>,
|
||||
start_time: Instant,
|
||||
frame_counter: u32,
|
||||
watchdog: Arc<Mutex<UW8WatchDog>>,
|
||||
sound_tx: Option<mpsc::SyncSender<RegisterUpdate>>,
|
||||
}
|
||||
@@ -159,6 +160,7 @@ impl super::Runtime for MicroW8 {
|
||||
end_frame,
|
||||
update,
|
||||
start_time: Instant::now(),
|
||||
frame_counter: 0,
|
||||
watchdog,
|
||||
sound_tx,
|
||||
});
|
||||
@@ -191,8 +193,11 @@ impl super::Runtime for MicroW8 {
|
||||
let mem = instance.memory.data_mut(&mut instance.store);
|
||||
mem[64..68].copy_from_slice(&time.to_le_bytes());
|
||||
mem[68..72].copy_from_slice(&input.gamepads);
|
||||
mem[72..76].copy_from_slice(&instance.frame_counter.to_le_bytes());
|
||||
}
|
||||
|
||||
instance.frame_counter = instance.frame_counter.wrapping_add(1);
|
||||
|
||||
instance.store.set_epoch_deadline(self.timeout as u64);
|
||||
if let Some(ref update) = instance.update {
|
||||
if let Err(err) = update.call(&mut instance.store, ()) {
|
||||
@@ -328,26 +333,37 @@ fn init_sound(
|
||||
let mut configs: Vec<_> = device
|
||||
.supported_output_configs()?
|
||||
.filter(|config| {
|
||||
config.channels() == 2
|
||||
&& (config.sample_format() == cpal::SampleFormat::F32
|
||||
|| config.sample_format() == cpal::SampleFormat::I16)
|
||||
config.sample_format() == cpal::SampleFormat::F32
|
||||
|| config.sample_format() == cpal::SampleFormat::I16
|
||||
})
|
||||
.collect();
|
||||
|
||||
if configs.is_empty() {
|
||||
eprintln!(
|
||||
"No suitable audio output config found on device \"{}\", available configs:",
|
||||
device.name()?
|
||||
);
|
||||
for config in device.supported_output_configs()? {
|
||||
eprintln!(" {}ch {}", config.channels(), config.sample_format());
|
||||
}
|
||||
bail!("Failed to configure audio out");
|
||||
}
|
||||
|
||||
configs.sort_by_key(|config| {
|
||||
let rate = 44100
|
||||
.max(config.min_sample_rate().0)
|
||||
.min(config.max_sample_rate().0);
|
||||
let prio = if rate >= 44100 {
|
||||
let rate_prio = if rate >= 44100 {
|
||||
rate - 44100
|
||||
} else {
|
||||
(44100 - rate) * 1000
|
||||
};
|
||||
prio + (config.sample_format() == cpal::SampleFormat::I16) as u32
|
||||
let format_prio = (config.sample_format() == cpal::SampleFormat::I16) as u32;
|
||||
let channels_prio = (config.channels() != 2) as u32 * 16777216;
|
||||
rate_prio + format_prio + channels_prio
|
||||
});
|
||||
let config = configs
|
||||
.into_iter()
|
||||
.next()
|
||||
.ok_or_else(|| anyhow!("Could not find float or 16bit signed output config"))?;
|
||||
let config = configs.into_iter().next().unwrap();
|
||||
|
||||
let sample_rate = cpal::SampleRate(44100)
|
||||
.max(config.min_sample_rate())
|
||||
.min(config.max_sample_rate());
|
||||
@@ -359,6 +375,7 @@ fn init_sound(
|
||||
}
|
||||
};
|
||||
let sample_format = config.sample_format();
|
||||
let num_channels = config.channels();
|
||||
let config = cpal::StreamConfig {
|
||||
buffer_size,
|
||||
..config.config()
|
||||
@@ -392,7 +409,7 @@ fn init_sound(
|
||||
let mut pending_updates: Vec<RegisterUpdate> = Vec::with_capacity(30);
|
||||
let mut current_time = 0;
|
||||
|
||||
let mut callback = move |mut outer_buffer: &mut [f32], _: &_| {
|
||||
let mut callback = move |mut outer_buffer: &mut [f32]| {
|
||||
let mut first_update = true;
|
||||
while let Ok(update) = rx.try_recv() {
|
||||
if first_update {
|
||||
@@ -484,10 +501,74 @@ fn init_sound(
|
||||
current_time = current_time.wrapping_add((step_size * 500 / sample_rate).max(1) as i32);
|
||||
}
|
||||
};
|
||||
|
||||
fn f32_to_i16<F>(mut buffer: &mut [i16], callback: &mut F)
|
||||
where
|
||||
F: FnMut(&mut [f32]),
|
||||
{
|
||||
let mut float_buffer = [0f32; 256];
|
||||
|
||||
while !buffer.is_empty() {
|
||||
let step_size = buffer.len().min(float_buffer.len());
|
||||
let step_buffer = &mut float_buffer[..step_size];
|
||||
callback(step_buffer);
|
||||
for (dest, src) in buffer.iter_mut().take(step_size).zip(step_buffer.iter()) {
|
||||
*dest = (src.max(-1.0).min(1.0) * 32767.0) as i16;
|
||||
}
|
||||
buffer = &mut buffer[step_size..];
|
||||
}
|
||||
}
|
||||
|
||||
fn stereo_to_mono<F>(mut buffer: &mut [f32], callback: &mut F)
|
||||
where
|
||||
F: FnMut(&mut [f32]),
|
||||
{
|
||||
let mut in_buffer = [0f32; 256];
|
||||
|
||||
while !buffer.is_empty() {
|
||||
let step_size = buffer.len().min(in_buffer.len() / 2);
|
||||
let step_buffer = &mut in_buffer[..step_size * 2];
|
||||
callback(step_buffer);
|
||||
for (index, dest) in buffer.iter_mut().take(step_size).enumerate() {
|
||||
*dest = (step_buffer[index * 2] + step_buffer[index * 2 + 1]) * 0.5;
|
||||
}
|
||||
buffer = &mut buffer[step_size..];
|
||||
}
|
||||
}
|
||||
|
||||
fn stereo_to_surround<F>(mut buffer: &mut [f32], num_channels: usize, callback: &mut F)
|
||||
where
|
||||
F: FnMut(&mut [f32]),
|
||||
{
|
||||
let mut in_buffer = [0f32; 256];
|
||||
buffer.fill(0.);
|
||||
|
||||
while !buffer.is_empty() {
|
||||
let step_size = (buffer.len() / num_channels).min(in_buffer.len() / 2);
|
||||
let step_buffer = &mut in_buffer[..step_size * 2];
|
||||
callback(step_buffer);
|
||||
for index in 0..step_size {
|
||||
buffer[index * num_channels + 0] = step_buffer[index * 2 + 0];
|
||||
buffer[index * num_channels + 1] = step_buffer[index * 2 + 1];
|
||||
}
|
||||
buffer = &mut buffer[step_size * num_channels..];
|
||||
}
|
||||
}
|
||||
|
||||
let stream = if sample_format == cpal::SampleFormat::F32 {
|
||||
if num_channels == 2 {
|
||||
device.build_output_stream(
|
||||
&config,
|
||||
callback,
|
||||
move |buffer: &mut [f32], _| callback(buffer),
|
||||
move |err| {
|
||||
dbg!(err);
|
||||
},
|
||||
None,
|
||||
)?
|
||||
} else if num_channels == 1 {
|
||||
device.build_output_stream(
|
||||
&config,
|
||||
move |buffer: &mut [f32], _| stereo_to_mono(buffer, &mut callback),
|
||||
move |err| {
|
||||
dbg!(err);
|
||||
},
|
||||
@@ -496,24 +577,50 @@ fn init_sound(
|
||||
} else {
|
||||
device.build_output_stream(
|
||||
&config,
|
||||
move |mut buffer: &mut [i16], info| {
|
||||
let mut float_buffer = [0f32; 256];
|
||||
|
||||
while !buffer.is_empty() {
|
||||
let step_size = buffer.len().min(float_buffer.len());
|
||||
let step_buffer = &mut float_buffer[..step_size];
|
||||
callback(step_buffer, info);
|
||||
for (dest, src) in buffer.iter_mut().take(step_size).zip(step_buffer.iter()) {
|
||||
*dest = (src.max(-1.0).min(1.0) * 32767.0) as i16;
|
||||
}
|
||||
buffer = &mut buffer[step_size..];
|
||||
}
|
||||
move |buffer: &mut [f32], _| {
|
||||
stereo_to_surround(buffer, num_channels as usize, &mut callback)
|
||||
},
|
||||
move |err| {
|
||||
dbg!(err);
|
||||
},
|
||||
None,
|
||||
)?
|
||||
}
|
||||
} else {
|
||||
if num_channels == 2 {
|
||||
device.build_output_stream(
|
||||
&config,
|
||||
move |buffer: &mut [i16], _| f32_to_i16(buffer, &mut callback),
|
||||
move |err| {
|
||||
dbg!(err);
|
||||
},
|
||||
None,
|
||||
)?
|
||||
} else if num_channels == 1 {
|
||||
device.build_output_stream(
|
||||
&config,
|
||||
move |buffer: &mut [i16], _| {
|
||||
f32_to_i16(buffer, &mut |b| stereo_to_mono(b, &mut callback))
|
||||
},
|
||||
move |err| {
|
||||
dbg!(err);
|
||||
},
|
||||
None,
|
||||
)?
|
||||
} else {
|
||||
device.build_output_stream(
|
||||
&config,
|
||||
move |buffer: &mut [i16], _| {
|
||||
f32_to_i16(buffer, &mut |b| {
|
||||
stereo_to_surround(b, num_channels as usize, &mut callback)
|
||||
})
|
||||
},
|
||||
move |err| {
|
||||
dbg!(err);
|
||||
},
|
||||
None,
|
||||
)?
|
||||
}
|
||||
};
|
||||
|
||||
Ok(Uw8Sound { stream, tx })
|
||||
|
||||
@@ -143,6 +143,7 @@ fn to_val_type(type_: &wasmparser::ValType) -> Result<ValType> {
|
||||
I64 => ValType::I64,
|
||||
F32 => ValType::F32,
|
||||
F64 => ValType::F64,
|
||||
V128 => ValType::V128,
|
||||
_ => bail!("Type {:?} isn't a value type", type_),
|
||||
})
|
||||
}
|
||||
@@ -972,6 +973,244 @@ fn remap_function(
|
||||
De::I64TruncSatF64U => En::I64TruncSatF64U,
|
||||
De::MemoryCopy { src_mem, dst_mem } => En::MemoryCopy { src_mem, dst_mem },
|
||||
De::MemoryFill { mem } => En::MemoryFill(mem),
|
||||
|
||||
De::V128Const { value } => En::V128Const(value.i128()),
|
||||
De::V128Load { memarg } => En::V128Load(mem(memarg)),
|
||||
De::V128Store { memarg } => En::V128Store(mem(memarg)),
|
||||
De::V128Load8x8S { memarg } => En::V128Load8x8S(mem(memarg)),
|
||||
De::V128Load8x8U { memarg } => En::V128Load8x8U(mem(memarg)),
|
||||
De::V128Load16x4S { memarg } => En::V128Load16x4S(mem(memarg)),
|
||||
De::V128Load16x4U { memarg } => En::V128Load16x4U(mem(memarg)),
|
||||
De::V128Load32x2S { memarg } => En::V128Load32x2S(mem(memarg)),
|
||||
De::V128Load32x2U { memarg } => En::V128Load32x2U(mem(memarg)),
|
||||
De::V128Load8Splat { memarg } => En::V128Load8Splat(mem(memarg)),
|
||||
De::V128Load16Splat { memarg } => En::V128Load16Splat(mem(memarg)),
|
||||
De::V128Load32Splat { memarg } => En::V128Load32Splat(mem(memarg)),
|
||||
De::V128Load64Splat { memarg } => En::V128Load64Splat(mem(memarg)),
|
||||
De::V128Load32Zero { memarg } => En::V128Load32Zero(mem(memarg)),
|
||||
De::V128Load64Zero { memarg } => En::V128Load64Zero(mem(memarg)),
|
||||
|
||||
De::V128Load8Lane { memarg, lane } => En::V128Load8Lane { memarg: mem(memarg), lane },
|
||||
De::V128Load16Lane { memarg, lane } => En::V128Load16Lane { memarg: mem(memarg), lane },
|
||||
De::V128Load32Lane { memarg, lane } => En::V128Load32Lane { memarg: mem(memarg), lane },
|
||||
De::V128Load64Lane { memarg, lane } => En::V128Load64Lane { memarg: mem(memarg), lane },
|
||||
De::V128Store8Lane { memarg, lane } => En::V128Store8Lane { memarg: mem(memarg), lane },
|
||||
De::V128Store16Lane { memarg, lane } => En::V128Store16Lane { memarg: mem(memarg), lane },
|
||||
De::V128Store32Lane { memarg, lane } => En::V128Store32Lane { memarg: mem(memarg), lane },
|
||||
De::V128Store64Lane { memarg, lane } => En::V128Store64Lane { memarg: mem(memarg), lane },
|
||||
|
||||
De::I8x16ExtractLaneS { lane } => En::I8x16ExtractLaneS(lane),
|
||||
De::I8x16ExtractLaneU { lane } => En::I8x16ExtractLaneU(lane),
|
||||
De::I8x16ReplaceLane { lane } => En::I8x16ReplaceLane(lane),
|
||||
De::I16x8ExtractLaneS { lane } => En::I16x8ExtractLaneS(lane),
|
||||
De::I16x8ExtractLaneU { lane } => En::I16x8ExtractLaneU(lane),
|
||||
De::I16x8ReplaceLane { lane } => En::I16x8ReplaceLane(lane),
|
||||
De::I32x4ExtractLane { lane } => En::I32x4ExtractLane(lane),
|
||||
De::I32x4ReplaceLane { lane } => En::I32x4ReplaceLane(lane),
|
||||
De::I64x2ExtractLane { lane } => En::I64x2ExtractLane(lane),
|
||||
De::I64x2ReplaceLane { lane } => En::I64x2ReplaceLane(lane),
|
||||
De::F32x4ExtractLane { lane } => En::F32x4ExtractLane(lane),
|
||||
De::F32x4ReplaceLane { lane } => En::F32x4ReplaceLane(lane),
|
||||
De::F64x2ExtractLane { lane } => En::F64x2ExtractLane(lane),
|
||||
De::F64x2ReplaceLane { lane } => En::F64x2ReplaceLane(lane),
|
||||
|
||||
De::I8x16Splat => En::I8x16Splat,
|
||||
De::I16x8Splat => En::I16x8Splat,
|
||||
De::I32x4Splat => En::I32x4Splat,
|
||||
De::I64x2Splat => En::I64x2Splat,
|
||||
De::F32x4Splat => En::F32x4Splat,
|
||||
De::F64x2Splat => En::F64x2Splat,
|
||||
De::I8x16Swizzle => En::I8x16Swizzle,
|
||||
De::I8x16Add => En::I8x16Add,
|
||||
De::I16x8Add => En::I16x8Add,
|
||||
De::I32x4Add => En::I32x4Add,
|
||||
De::I64x2Add => En::I64x2Add,
|
||||
De::F32x4Add => En::F32x4Add,
|
||||
De::F64x2Add => En::F64x2Add,
|
||||
De::I8x16Sub => En::I8x16Sub,
|
||||
De::I16x8Sub => En::I16x8Sub,
|
||||
De::I32x4Sub => En::I32x4Sub,
|
||||
De::I64x2Sub => En::I64x2Sub,
|
||||
De::F32x4Sub => En::F32x4Sub,
|
||||
De::F64x2Sub => En::F64x2Sub,
|
||||
De::I16x8Mul => En::I16x8Mul,
|
||||
De::I32x4Mul => En::I32x4Mul,
|
||||
De::I64x2Mul => En::I64x2Mul,
|
||||
De::F32x4Mul => En::F32x4Mul,
|
||||
De::F64x2Mul => En::F64x2Mul,
|
||||
De::I32x4DotI16x8S => En::I32x4DotI16x8S,
|
||||
De::I8x16Neg => En::I8x16Neg,
|
||||
De::I16x8Neg => En::I16x8Neg,
|
||||
De::I32x4Neg => En::I32x4Neg,
|
||||
De::I64x2Neg => En::I64x2Neg,
|
||||
De::F32x4Neg => En::F32x4Neg,
|
||||
De::F64x2Neg => En::F64x2Neg,
|
||||
De::I16x8ExtMulLowI8x16S => En::I16x8ExtMulLowI8x16S,
|
||||
De::I16x8ExtMulHighI8x16S => En::I16x8ExtMulHighI8x16S,
|
||||
De::I16x8ExtMulLowI8x16U => En::I16x8ExtMulLowI8x16U,
|
||||
De::I16x8ExtMulHighI8x16U => En::I16x8ExtMulHighI8x16U,
|
||||
De::I32x4ExtMulLowI16x8S => En::I32x4ExtMulLowI16x8S,
|
||||
De::I32x4ExtMulHighI16x8S => En::I32x4ExtMulHighI16x8S,
|
||||
De::I32x4ExtMulLowI16x8U => En::I32x4ExtMulLowI16x8U,
|
||||
De::I32x4ExtMulHighI16x8U => En::I32x4ExtMulHighI16x8U,
|
||||
De::I64x2ExtMulLowI32x4S => En::I64x2ExtMulLowI32x4S,
|
||||
De::I64x2ExtMulHighI32x4S => En::I64x2ExtMulHighI32x4S,
|
||||
De::I64x2ExtMulLowI32x4U => En::I64x2ExtMulLowI32x4U,
|
||||
De::I64x2ExtMulHighI32x4U => En::I64x2ExtMulHighI32x4U,
|
||||
De::I16x8ExtAddPairwiseI8x16S => En::I16x8ExtAddPairwiseI8x16S,
|
||||
De::I16x8ExtAddPairwiseI8x16U => En::I16x8ExtAddPairwiseI8x16U,
|
||||
De::I32x4ExtAddPairwiseI16x8S => En::I32x4ExtAddPairwiseI16x8S,
|
||||
De::I32x4ExtAddPairwiseI16x8U => En::I32x4ExtAddPairwiseI16x8U,
|
||||
De::I8x16AddSatS => En::I8x16AddSatS,
|
||||
De::I8x16AddSatU => En::I8x16AddSatU,
|
||||
De::I16x8AddSatS => En::I16x8AddSatS,
|
||||
De::I16x8AddSatU => En::I16x8AddSatU,
|
||||
De::I8x16SubSatS => En::I8x16SubSatS,
|
||||
De::I8x16SubSatU => En::I8x16SubSatU,
|
||||
De::I16x8SubSatS => En::I16x8SubSatS,
|
||||
De::I16x8SubSatU => En::I16x8SubSatU,
|
||||
De::I16x8Q15MulrSatS => En::I16x8Q15MulrSatS,
|
||||
De::I8x16MinS => En::I8x16MinS,
|
||||
De::I8x16MinU => En::I8x16MinU,
|
||||
De::I16x8MinS => En::I16x8MinS,
|
||||
De::I16x8MinU => En::I16x8MinU,
|
||||
De::I32x4MinS => En::I32x4MinS,
|
||||
De::I32x4MinU => En::I32x4MinU,
|
||||
De::F32x4Min => En::F32x4Min,
|
||||
De::F64x2Min => En::F64x2Min,
|
||||
De::F32x4PMin => En::F32x4PMin,
|
||||
De::F64x2PMin => En::F64x2PMin,
|
||||
De::I8x16MaxS => En::I8x16MaxS,
|
||||
De::I8x16MaxU => En::I8x16MaxU,
|
||||
De::I16x8MaxS => En::I16x8MaxS,
|
||||
De::I16x8MaxU => En::I16x8MaxU,
|
||||
De::I32x4MaxS => En::I32x4MaxS,
|
||||
De::I32x4MaxU => En::I32x4MaxU,
|
||||
De::F32x4Max => En::F32x4Max,
|
||||
De::F64x2Max => En::F64x2Max,
|
||||
De::F32x4PMax => En::F32x4PMax,
|
||||
De::F64x2PMax => En::F64x2PMax,
|
||||
De::I8x16AvgrU => En::I8x16AvgrU,
|
||||
De::I16x8AvgrU => En::I16x8AvgrU,
|
||||
De::I8x16Abs => En::I8x16Abs,
|
||||
De::I16x8Abs => En::I16x8Abs,
|
||||
De::I32x4Abs => En::I32x4Abs,
|
||||
De::I64x2Abs => En::I64x2Abs,
|
||||
De::F32x4Abs => En::F32x4Abs,
|
||||
De::F64x2Abs => En::F64x2Abs,
|
||||
De::I8x16Shl => En::I8x16Shl,
|
||||
De::I16x8Shl => En::I16x8Shl,
|
||||
De::I32x4Shl => En::I32x4Shl,
|
||||
De::I64x2Shl => En::I64x2Shl,
|
||||
De::I8x16ShrS => En::I8x16ShrS,
|
||||
De::I8x16ShrU => En::I8x16ShrU,
|
||||
De::I16x8ShrS => En::I16x8ShrS,
|
||||
De::I16x8ShrU => En::I16x8ShrU,
|
||||
De::I32x4ShrS => En::I32x4ShrS,
|
||||
De::I32x4ShrU => En::I32x4ShrU,
|
||||
De::I64x2ShrS => En::I64x2ShrS,
|
||||
De::I64x2ShrU => En::I64x2ShrU,
|
||||
De::V128And => En::V128And,
|
||||
De::V128Or => En::V128Or,
|
||||
De::V128Xor => En::V128Xor,
|
||||
De::V128Not => En::V128Not,
|
||||
De::V128AndNot => En::V128AndNot,
|
||||
De::V128Bitselect => En::V128Bitselect,
|
||||
De::I8x16Popcnt => En::I8x16Popcnt,
|
||||
De::V128AnyTrue => En::V128AnyTrue,
|
||||
De::I8x16AllTrue => En::I8x16AllTrue,
|
||||
De::I16x8AllTrue => En::I16x8AllTrue,
|
||||
De::I32x4AllTrue => En::I32x4AllTrue,
|
||||
De::I64x2AllTrue => En::I64x2AllTrue,
|
||||
De::I8x16Bitmask => En::I8x16Bitmask,
|
||||
De::I16x8Bitmask => En::I16x8Bitmask,
|
||||
De::I32x4Bitmask => En::I32x4Bitmask,
|
||||
De::I64x2Bitmask => En::I64x2Bitmask,
|
||||
De::I8x16Eq => En::I8x16Eq,
|
||||
De::I16x8Eq => En::I16x8Eq,
|
||||
De::I32x4Eq => En::I32x4Eq,
|
||||
De::I64x2Eq => En::I64x2Eq,
|
||||
De::F32x4Eq => En::F32x4Eq,
|
||||
De::F64x2Eq => En::F64x2Eq,
|
||||
De::I8x16Ne => En::I8x16Ne,
|
||||
De::I16x8Ne => En::I16x8Ne,
|
||||
De::I32x4Ne => En::I32x4Ne,
|
||||
De::I64x2Ne => En::I64x2Ne,
|
||||
De::F32x4Ne => En::F32x4Ne,
|
||||
De::F64x2Ne => En::F64x2Ne,
|
||||
De::I8x16LtS => En::I8x16LtS,
|
||||
De::I8x16LtU => En::I8x16LtU,
|
||||
De::I16x8LtS => En::I16x8LtS,
|
||||
De::I16x8LtU => En::I16x8LtU,
|
||||
De::I32x4LtS => En::I32x4LtS,
|
||||
De::I32x4LtU => En::I32x4LtU,
|
||||
De::F32x4Lt => En::F32x4Lt,
|
||||
De::F64x2Lt => En::F64x2Lt,
|
||||
De::I8x16LeS => En::I8x16LeS,
|
||||
De::I8x16LeU => En::I8x16LeU,
|
||||
De::I16x8LeS => En::I16x8LeS,
|
||||
De::I16x8LeU => En::I16x8LeU,
|
||||
De::I32x4LeS => En::I32x4LeS,
|
||||
De::I32x4LeU => En::I32x4LeU,
|
||||
De::F32x4Le => En::F32x4Le,
|
||||
De::F64x2Le => En::F64x2Le,
|
||||
De::I8x16GtS => En::I8x16GtS,
|
||||
De::I8x16GtU => En::I8x16GtU,
|
||||
De::I16x8GtS => En::I16x8GtS,
|
||||
De::I16x8GtU => En::I16x8GtU,
|
||||
De::I32x4GtS => En::I32x4GtS,
|
||||
De::I32x4GtU => En::I32x4GtU,
|
||||
De::F32x4Gt => En::F32x4Gt,
|
||||
De::F64x2Gt => En::F64x2Gt,
|
||||
De::I8x16GeS => En::I8x16GeS,
|
||||
De::I8x16GeU => En::I8x16GeU,
|
||||
De::I16x8GeS => En::I16x8GeS,
|
||||
De::I16x8GeU => En::I16x8GeU,
|
||||
De::I32x4GeS => En::I32x4GeS,
|
||||
De::I32x4GeU => En::I32x4GeU,
|
||||
De::F32x4Ge => En::F32x4Ge,
|
||||
De::F64x2Ge => En::F64x2Ge,
|
||||
De::F32x4Div => En::F32x4Div,
|
||||
De::F64x2Div => En::F64x2Div,
|
||||
De::F32x4Sqrt => En::F32x4Sqrt,
|
||||
De::F64x2Sqrt => En::F64x2Sqrt,
|
||||
De::F32x4Ceil => En::F32x4Ceil,
|
||||
De::F64x2Ceil => En::F64x2Ceil,
|
||||
De::F32x4Floor => En::F32x4Floor,
|
||||
De::F64x2Floor => En::F64x2Floor,
|
||||
De::F32x4Trunc => En::F32x4Trunc,
|
||||
De::F64x2Trunc => En::F64x2Trunc,
|
||||
De::F32x4Nearest => En::F32x4Nearest,
|
||||
De::F64x2Nearest => En::F64x2Nearest,
|
||||
De::F32x4ConvertI32x4S => En::F32x4ConvertI32x4S,
|
||||
De::F32x4ConvertI32x4U => En::F32x4ConvertI32x4U,
|
||||
De::F64x2ConvertLowI32x4S => En::F64x2ConvertLowI32x4S,
|
||||
De::F64x2ConvertLowI32x4U => En::F64x2ConvertLowI32x4U,
|
||||
De::I32x4TruncSatF32x4S => En::I32x4TruncSatF32x4S,
|
||||
De::I32x4TruncSatF32x4U => En::I32x4TruncSatF32x4U,
|
||||
De::I32x4TruncSatF64x2SZero => En::I32x4TruncSatF64x2SZero,
|
||||
De::I32x4TruncSatF64x2UZero => En::I32x4TruncSatF64x2UZero,
|
||||
De::F32x4DemoteF64x2Zero => En::F32x4DemoteF64x2Zero,
|
||||
De::F64x2PromoteLowF32x4 => En::F64x2PromoteLowF32x4,
|
||||
De::I8x16NarrowI16x8S => En::I8x16NarrowI16x8S,
|
||||
De::I8x16NarrowI16x8U => En::I8x16NarrowI16x8U,
|
||||
De::I16x8NarrowI32x4S => En::I16x8NarrowI32x4S,
|
||||
De::I16x8NarrowI32x4U => En::I16x8NarrowI32x4U,
|
||||
De::I16x8ExtendLowI8x16S => En::I16x8ExtendLowI8x16S,
|
||||
De::I16x8ExtendHighI8x16S => En::I16x8ExtendHighI8x16S,
|
||||
De::I16x8ExtendLowI8x16U => En::I16x8ExtendLowI8x16U,
|
||||
De::I16x8ExtendHighI8x16U => En::I16x8ExtendHighI8x16U,
|
||||
De::I32x4ExtendLowI16x8S => En::I32x4ExtendLowI16x8S,
|
||||
De::I32x4ExtendHighI16x8S => En::I32x4ExtendHighI16x8S,
|
||||
De::I32x4ExtendLowI16x8U => En::I32x4ExtendLowI16x8U,
|
||||
De::I32x4ExtendHighI16x8U => En::I32x4ExtendHighI16x8U,
|
||||
De::I64x2ExtendLowI32x4S => En::I64x2ExtendLowI32x4S,
|
||||
De::I64x2ExtendHighI32x4S => En::I64x2ExtendHighI32x4S,
|
||||
De::I64x2ExtendLowI32x4U => En::I64x2ExtendLowI32x4U,
|
||||
De::I64x2ExtendHighI32x4U => En::I64x2ExtendHighI32x4U,
|
||||
|
||||
De::I8x16Shuffle { lanes } => En::I8x16Shuffle(lanes),
|
||||
|
||||
other => bail!("Unsupported instruction {:?}", other),
|
||||
});
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<div id="uw8">
|
||||
<a href="https://exoticorn.github.io/microw8">MicroW8</a> 0.3.0
|
||||
<a href="https://exoticorn.github.io/microw8">MicroW8</a> 0.3.1
|
||||
</div>
|
||||
<div id="centered">
|
||||
<canvas class="screen" id="screen" width="320" height="240">
|
||||
|
||||
@@ -240,6 +240,7 @@ export default function MicroW8(screen, config = {}) {
|
||||
await audioReadyPromise;
|
||||
|
||||
let startTime = Date.now();
|
||||
let frameCounter = 0;
|
||||
|
||||
const timePerFrame = 1000 / 60;
|
||||
|
||||
@@ -306,6 +307,7 @@ export default function MicroW8(screen, config = {}) {
|
||||
let time = Date.now() - startTime;
|
||||
u32Mem[16] = time;
|
||||
u32Mem[17] = pad | gamepad;
|
||||
u32Mem[18] = frameCounter++;
|
||||
if(instance.exports.upd) {
|
||||
instance.exports.upd();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user