forked from eduardoayervecruz/ca-pa1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpa1.c
31 lines (24 loc) · 701 Bytes
/
pa1.c
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
26
27
28
29
30
//---------------------------------------------------------------
//
// 4190.308 Computer Architecture (Fall 2022)
//
// Project #1:
//
// September 6, 2022
//
// Seongyeop Jeong (seongyeop.jeong@snu.ac.kr)
// Jaehoon Shim (mattjs@snu.ac.kr)
// IlKueon Kang (kangilkueon@snu.ac.kr)
// Wookje Han (gksdnrwp@snu.ac.kr)
// Jinsol Park (jinsolpark@snu.ac.kr)
// Systems Software & Architecture Laboratory
// Dept. of Computer Science and Engineering
// Seoul National University
//
//---------------------------------------------------------------
typedef unsigned char u8;
/* TODO: Implement this function */
int encode(const u8* src, int width, int height, u8* result)
{
return 0;
}