-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfread.as
More file actions
25 lines (19 loc) · 821 Bytes
/
fread.as
File metadata and controls
25 lines (19 loc) · 821 Bytes
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
/********************************* fread.as *********************************
* Author: Agner Fog
* date created: 2018-03-21
* Last modified: 2018-03-21
* Version: 1.00
* Project: ForwardCom library libc.li
* Description: fread function. Read from file
* C declaration: size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream);
*
* Copyright 2018 GNU General Public License http://www.gnu.org/licenses
*****************************************************************************/
code section execute align = 4
_fread function public reguse = 0xF
int64 r1 *= r2 // calculate total size
int64 r2 = 1 // make r1*r2 unchanged
sys_call(r0, r1, 1, 0x112) // system call fread. buffer base r0, size r1
return
_fread end
code end