fix comments
This commit is contained in:
parent
ad04bfb9fb
commit
a22eef1060
|
@ -41,7 +41,7 @@ enum pic_vtype {
|
||||||
* ptr : 111111111111TTTT PPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPP
|
* ptr : 111111111111TTTT PPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPP PPPPPPPPPPPPPPPP
|
||||||
* int : 1111111111110110 0000000000000000 IIIIIIIIIIIIIIII IIIIIIIIIIIIIIII
|
* int : 1111111111110110 0000000000000000 IIIIIIIIIIIIIIII IIIIIIIIIIIIIIII
|
||||||
* sym : 1111111111110111 0000000000000000 SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSS
|
* sym : 1111111111110111 0000000000000000 SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSS
|
||||||
* char : 1111111111111000 0000000000000000 CCCCCCCCCCCCCCCC ................
|
* char : 1111111111111000 0000000000000000 CCCCCCCCCCCCCCCC CCCCCCCCCCCCCCCC
|
||||||
*/
|
*/
|
||||||
|
|
||||||
typedef uint64_t pic_value;
|
typedef uint64_t pic_value;
|
||||||
|
|
40
vm.c
40
vm.c
|
@ -35,27 +35,27 @@ pic_get_proc(pic_state *pic)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* char type desc.
|
* char type desc.
|
||||||
* ---- ---- ----
|
* ---- ---- ----
|
||||||
* o pic_value * object
|
* o pic_value * object
|
||||||
* i int * int
|
* i int * int
|
||||||
* I int *, bool * int with exactness
|
* I int *, bool * int with exactness
|
||||||
* k size_t * size_t implicitly converted from int
|
* k size_t * size_t implicitly converted from int
|
||||||
* f double * float
|
* f double * float
|
||||||
* F double *, bool * float with exactness
|
* F double *, bool * float with exactness
|
||||||
* s pic_str ** string object
|
* s pic_str ** string object
|
||||||
* z char ** c string
|
* z char ** c string
|
||||||
* m pic_sym * symbol
|
* m pic_sym * symbol
|
||||||
* v pic_vec ** vector object
|
* v pic_vec ** vector object
|
||||||
* b pic_blob ** bytevector object
|
* b pic_blob ** bytevector object
|
||||||
* c char * char
|
* c char * char
|
||||||
* l struct pic_proc ** lambda object
|
* l struct pic_proc ** lambda object
|
||||||
* p struct pic_port ** port object
|
* p struct pic_port ** port object
|
||||||
* d struct pic_dict ** dictionary object
|
* d struct pic_dict ** dictionary object
|
||||||
* e struct pic_error ** error object
|
* e struct pic_error ** error object
|
||||||
*
|
*
|
||||||
* | optional operator
|
* | optional operator
|
||||||
* * int *, pic_value ** variable length operator
|
* * size_t *, pic_value ** variable length operator
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
Loading…
Reference in New Issue