about summary refs log tree commit diff stats
path: root/archive/0.vm.arc/tangle.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-12-20 21:46:12 -0800
committerKartik Agaram <vc@akkartik.com>2020-12-20 22:58:37 -0800
commitd12094ee4d31e61dc27c0beaa1d4dfbea2aae02c (patch)
tree418e5964a9f8730fdc61ff777745dd75f577b0f7 /archive/0.vm.arc/tangle.mu
parent9b867ab4385a60c42c3e342966b1f44d2acc1e71 (diff)
downloadmu-d12094ee4d31e61dc27c0beaa1d4dfbea2aae02c.tar.gz
7367 - start of boot sector for Mu computer
Not working yet. Reading sectors from disk returns an error (sets carry
flag).
Diffstat (limited to 'archive/0.vm.arc/tangle.mu')
0 files changed, 0 insertions, 0 deletions
384c7f8a82ab1e8d'>4d190a9c ^
5eaf687d ^

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
31
32
33
34
35
36
37
38
39





















                                                                       


             

                  
            


                   
           
            
 


                                                              

      
/* 
 * log.h
 *
 * Copyright (C) 2012 James Booth <boothj5@gmail.com>
 * 
 * This file is part of Profanity.
 *
 * Profanity is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Profanity is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Profanity.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#ifndef LOG_H
#define LOG_H

#include <stdio.h>

// log areas
#define PROF "prof"
#define CONN "conn"

// file log
FILE *logp; 

void log_init(void);
void log_msg(const char * const area, const char * const msg);
void log_close(void);

#endif
2017-12-03 23:25:40 -0800 committer Kartik K. Agaram <vc@akkartik.com> 2017-12-03 23:25:40 -0800 4134 - 'input' = 'ingredient'' href='/akkartik/mu/commit/092socket.mu?h=hlt&id=4a48bedcd1d708a43d43dc6259a4e45c52ea3d00'>4a48bedc ^
f24eeaab ^
4a48bedc ^
9da067db ^



0606f4ac ^

294b2ab3 ^
f24eeaab ^

0606f4ac ^






5eb5a8de ^
f24eeaab ^



4a48bedc ^
f24eeaab ^







87eb3aca ^
62ae069e ^
4a48bedc ^
62ae069e ^
28191d31 ^
b07576d2 ^

28191d31 ^

b07576d2 ^

28191d31 ^
62ae069e ^
b07576d2 ^

62ae069e ^
b07576d2 ^
62ae069e ^

5eb5a8de ^

87eb3aca ^
5eb5a8de ^
4a48bedc ^
5eb5a8de ^
87eb3aca ^
62ae069e ^

f24eeaab ^
62ae069e ^
4a48bedc ^
62ae069e ^





f24eeaab ^
62ae069e ^



300a1d6e ^



4a48bedc ^
300a1d6e ^


























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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177