Enjoy programming more!
Kidspod is a post site which supports young programmers.
First step to join us.
Register as a member
For members

2019/05/31 23:54:52

MixJuice GET URL : kidspod.club/mj/855

風船 C 言語版 ソース(c4ij)

IchigoJam BASIC の実行プログラムは ID=854 です。

コンパイルには次が必要です。
・C language for IchigoJam
https://github.com/IchigoJam/c4ij
・GNU Embedded Toolchain for Arm
https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads
・make(Windows で入っていない場合)
http://gnuwin32.sourceforge.net/packages/make.htm
・Visual Studio (Windows で必要な場合あり)
https://visualstudio.microsoft.com/ja/downloads/

Makefile の BIN2BAS 項目は #800 または #D00 出力にして下さい。
CHR$(232)・CHR$(242) のキャラクターを使っているため、
その領域を用いている #700 からの出力(デフォルト状態)では意図しない表示になります。

SOURCE CODE

#include <std15.h>

__attribute__ ((section(".main")))
int main(int param, int ram, int rom, int (*divfunc)()) {
	cls();

	for (;;) {
		int x = rnd(31);

		locate(x, 23);
		putc(232);
		putc(10);

		if( inkey() != -1 ) break;

		wait(7);

		locate(x, 23);
		putc(242);
	}

	return 0;
}

COMMENT