1. Include necessary file headers - 1. Include necessary file headers - 2026.1 English - XD101

Vitis Tutorials: Platform Creation (XD101)

Document ID
XD101
Release Date
2026-06-23
Version
2026.1 English

Add the new ‘include’ commands at the beginning of the file around the same place of other ‘include’ commands that already exists.

OLD

#include <stdlib.h>
#include <fstream>
#include <iostream>
#include "vadd.h"

NEW

#include <stdlib.h>
#include <fstream>
#include <iostream>
#include "vadd.h"

#include "ap_int.h"
#include <stdio.h>