1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

use crate::*;

pub fn pop1r(_src: impl Constant + Register + Sized<1>) -> impl Fragment + Program {
   Nil {}
}
pub fn pop2r(_src: impl Constant + Register + Sized<2>) -> impl Fragment + Program {
   Nil {}
}
pub fn pop4r(_src: impl Constant + Register + Sized<4>) -> impl Fragment + Program {
   Nil {}
}
pub fn pop8r(_src: impl Constant + Register + Sized<8>) -> impl Fragment + Program {
   Nil {}
}
pub fn popng<const N: usize>(_src: impl Constant + GlobalVariable + Sized<N>) -> impl Fragment + Program {
   Nil {}
}
pub fn popnl<const N: usize>(_src: impl Constant + LocalVariable + Sized<N>) -> impl Fragment + Program {
   Nil {}
}
pub fn popns<const N: usize>(_src: impl Constant + StackVariable + Sized<N>) -> impl Fragment + Program {
   Nil {}
}