Skip to content
Snippets Groups Projects
Commit b4996369 authored by root's avatar root
Browse files

Update README.md

parent a51c6d9c
No related branches found
No related tags found
No related merge requests found
......@@ -5,9 +5,10 @@
### 1. Brief information about our values
* fx_s4716
* **fx** -> fixed point(고정 소수점 방식 사용)
* **s** -> signed(부호 1비트 사용)
* **4716** -> 정수부 47비트, 소수부 16비트 사용
![고정소수점](/uploads/4131df8bf8f6810e284ab8fcda2e0c36/고정소수점.png)
* ```fx``` -> fixed point(고정 소수점 방식 사용)
* ```s``` -> signed(부호 1비트 사용)
* ```4716``` -> 정수부 47비트, 소수부 16비트 사용
* minimum : -140,737,488,355,328 (-2^63/2^16)
* maximum : 140,737,488,355,327.9999847412109375 (2^63-1/2^16)
* resolution : 0.0000152587890625 (1/2^16)
......@@ -28,11 +29,14 @@
### 3. Make Build
- Makefile은 기본저긍로 Target, Dependency, Recipe 등에 대한 Rules로 이루어져 있다.
- Makefile은 기본적으로 Target, Dependency, Recipe 등에 대한 Rules로 이루어져 있다.
```Text
<Target> : <Dependencies>
<Recipe>
```
* Target : 빌드 대상 이름.
* Dependencies : 빌드 대상이 의존하는 Target이나 파일 목록.
* Recipe : 빌드 대상을 생성하는 명령. 무조건 ```tab```을 넣어주어야 한다.
- Macro, Variable 이용
1. SRCS : 소스 파일들의 이름을 적는다.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment