mirror of
https://gitlab.com/camelot/kickc.git
synced 2024-11-25 05:33:29 +00:00
Improved doxygen documentation. Closes #672
This commit is contained in:
parent
bde31dac4c
commit
e277b08a26
3
Makefile
3
Makefile
@ -4,4 +4,7 @@ test:
|
|||||||
mvn package
|
mvn package
|
||||||
clean:
|
clean:
|
||||||
mvn clean
|
mvn clean
|
||||||
|
doxygen:
|
||||||
|
mkdir target
|
||||||
|
doxygen src/main/doxygen/doxygen.conf
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
/// @file
|
/// @file
|
||||||
/// Find atan2(x, y) using the CORDIC method
|
/// Find atan2(x, y) using the CORDIC method
|
||||||
|
///
|
||||||
/// See http://bsvi.ru/uploads/CORDIC--_10EBA/cordic.pdf
|
/// See http://bsvi.ru/uploads/CORDIC--_10EBA/cordic.pdf
|
||||||
|
|
||||||
/// Find the atan2(x, y) - which is the angle of the line from (0,0) to (x,y)
|
/// Find the atan2(x, y) - which is the angle of the line from (0,0) to (x,y)
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
/// @file
|
/// @file
|
||||||
/// Commodore 128 Registers and Memory
|
/// Commodore 128 Registers and Memory
|
||||||
|
///
|
||||||
/// https://archive.org/details/C128_Programmers_Reference_Guide_1986_Bamtam_Books/page/n299/mode/2up
|
/// https://archive.org/details/C128_Programmers_Reference_Guide_1986_Bamtam_Books/page/n299/mode/2up
|
||||||
#ifndef __C128__
|
#ifndef __C128__
|
||||||
#error "Target platform must be C128"
|
#error "Target platform must be C128"
|
||||||
|
Loading…
Reference in New Issue
Block a user