--- uae/docs/README.PROGRAMMERS 2018/04/24 16:41:52 1.1.1.4 +++ uae/docs/README.PROGRAMMERS 2018/04/24 16:44:34 1.1.1.6 @@ -41,7 +41,8 @@ Some possible projects, in order of esti implement ECS resolutions - however, a lot of places rely on the OCS timing parameters and display sizes. - Figure out a diskfile format that supports every possible non-standard - format. + format [I'll work on this soon (I hope)]. +- Port bsdsocket library code to other operating systems than Win32. - Implement 68551 MMU. I have docs now. Not among the most necessary things. Should be done like exception 3 handling: add code to genamode in gencpu.c. - Implement AGA support. Some bits and pieces exist. @@ -106,6 +107,7 @@ guidelines. * Set up your editor so that tab characters round up to the next position where ((cursorx-1) % 8) == 0, i.e. 8 space tabs. Do not use 4 space tabs, that makes the code awful to read on other machines and worse to edit. + (I'm talking about the tab character here, not indentation!) * Lines can be up to 132 characters wide. Use SVGATextMode for the Linux console, or use a windowing system in a high resolution. * C++ comments are a no-no in C code. @@ -292,6 +294,7 @@ F0FF50: used by the EXTER interrupt whic F0FF60: used by the uaectrl/uae-control programs (see uaelib.c) F0FF70: used by the task that gets set up for the mouse emulation. + * How the compiler works .. yet to be written. To be decided, in fact.