Skip to content

Commit b726584

Browse files
committed
Normalize stack-effect comments
1 parent 4f78b29 commit b726584

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

host.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ able_host_exec(able_host_t *host) {
2424
return y;
2525
}
2626
switch (host->c.i) {
27-
case 0x80: { // wait ( p - f)
27+
case 0x80: { // wait ( p - n)
2828
if (DSU(&host->c, 1))
2929
return -6;
3030
uint32_t pn;
@@ -38,7 +38,7 @@ able_host_exec(able_host_t *host) {
3838
return -5;
3939
break;
4040
}
41-
case 0x81: { // clip ( a # p - f)
41+
case 0x81: { // clip ( a # p - n)
4242
if (DSU(&host->c, 3))
4343
return -6;
4444
uint32_t pn;
@@ -64,7 +64,7 @@ able_host_exec(able_host_t *host) {
6464
DS0 = able_port_clip(&host->p[pn], host->c.b + a, u);
6565
break;
6666
}
67-
case 0x82: { // recv ( p - a # f)
67+
case 0x82: { // recv ( p - a # n)
6868
if (DSU(&host->c, 1))
6969
return -6;
7070
if (DSO(&host->c, 2))
@@ -92,7 +92,7 @@ able_host_exec(able_host_t *host) {
9292
}
9393
break;
9494
}
95-
case 0x83: { // send ( a # l - f)
95+
case 0x83: { // send ( a # l - n)
9696
if (DSU(&host->c, 3))
9797
return -6;
9898
uint32_t ln;

0 commit comments

Comments
 (0)