This commit is contained in:
flo 2017-04-11 18:41:47 +02:00
parent 0f7dcecf40
commit 748f31e91f
8 changed files with 4 additions and 13 deletions

View File

@ -20,7 +20,7 @@ $(OBJDIR)/%.bmp.o: $(IMGDIR)/%.bmp
## Compile fonts
$(OBJDIR)/%.bmp.o: $(FONTDIR)/%.bmp
fxconv $< -o $@ --font -n $(patsubst %.bmp,font_%,$(notdir $<))
fxconv $< -o $@ -n $(basename $(notdir $<)) --font
## Make an object file out of an ASM source file
$(OBJDIR)/%.s.o: $(SRCDIR)/%.s

View File

@ -41,10 +41,4 @@ SRC = $(notdir $(wildcard $(SRCDIR)/*.[cs]))
# INCLUDES
INC = $(notdir $(wildcard $(INCDIR)/*.h))
# SPRITES
IMG = $(notdir $(wildcard $(IMGDIR)/*.bmp))
# FONTS
FONT = $(notdir $(wildcard $(FONTDIR)/*.bmp))
# END OF FILE

Binary file not shown.

Before

Width:  |  Height:  |  Size: 0 B

After

Width:  |  Height:  |  Size: 24 KiB

View File

BIN
modern.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
obj/modern.bmp.o Normal file

Binary file not shown.

BIN
obj/periodiq.c.o Normal file

Binary file not shown.

View File

@ -14,6 +14,7 @@
#include "stdio.h"
#include "ctype.h"
#include "keyboard.h"
#include "tales.h"
//#include <stdlib.h>
@ -197,9 +198,6 @@ char *etat[9]={
{"inconnu"}, //3
};
extern Font font_modern;
int main()
{
@ -221,14 +219,13 @@ void Mini(char* chaine, int n ) // fonc defini le numero de la fonction
int tableauElement(int chang)
{
extern Font modern;
short decalx = 0, decaly = 0;
unsigned char x = 1, y = 1;
unsigned char i;
text_configure(font_modern, color_black);
text_configure(&modern, color_black);
while(1)
{